nvim-lspconfig/Makefile
dundargoc 3e6d426af5 build: add -q flag to luacheck
Otherwise it will print out all the files that passes which makes it
extremely tedious as you need to search for the files that failed.
2025-01-21 15:38:28 +01:00

13 lines
215 B
Makefile

test:
vusted ./test
lint:
@printf "\nRunning luacheck\n"
luacheck -q lua/* test/*
@printf "\nRunning selene\n"
selene --display-style=quiet .
@printf "\nRunning stylua\n"
stylua --check .
.PHONY: test lint