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