blob: 3cae985b774e09925ba198f0f5a3c30be0274d5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: lint
lint:
stylua -c .
.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
|