blob: 4e7fa532e8953ef48e6d347636a6ece3d9cd2cf7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: lint
lint:
stylua -c .
luacheck .
.PHONY: test
test:
nvim \
--headless \
-u test/init.lua \
-c "PlenaryBustedDirectory test/ {minimal_init = 'test/init.lua', sequential = true}"
.PHONY: clean
clean:
rm -rf .test
|