blob: be230e3144f928d7e571a358bc1b65351b49aa5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: check format all
LUA_FILES := $(shell find . -name "*.lua")
all: check format
check:
luacheck --no-color --globals=vis -- $(LUA_FILES)
format:
lua-format -i $(LUA_FILES)
|