blob: 5f4104385721a7b6dfb92e7d5853231ed913c504 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.PHONY: check format check-luacheck check-format
LUA_FILES := $(shell find -name "*.lua")
check: check-luacheck
all: check check-format
check-luacheck:
luacheck --globals=vis -- $(LUA_FILES)
check-format:
set -e; for lf in $(LUA_FILES); do tools/check-format "$${lf}"; done
format:
lua-format -i $(LUA_FILES)
|