summaryrefslogtreecommitdiff
path: root/Makefile
blob: 946cac8f01bf6c86ac5c5ec865e41b0061b450cb (plain)
1
2
3
4
5
6
7
.PHONY: check 

LUA_FILES := $(shell find . -type f -name "*.lua")

check:
	stylua $(LUA_FILES)
	luacheck --no-color --globals=vim -- $(LUA_FILES)