mirror of
https://github.com/neovim/nvim-lspconfig
synced 2025-03-11 04:27:36 +00:00
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.
13 lines
215 B
Makefile
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
|