aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3f3f8d6b4f1516616d0a98df789e9168162da888 (plain)
1
2
3
4
5
6
7
8
9
.DEFAULT_GOAL = check

lint:
	@luacheck lua/luatab

format:
	@for file in `find . -name '*.lua'`;do lua-format $$file -i; done;

check: lint test