1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00
SpaceVim/bundle/nvim-lspconfig/Makefile

13 lines
223 B
Makefile
Raw Normal View History

2021-10-05 15:13:10 +08:00
test:
sh ./scripts/run_test.sh
2021-10-05 15:13:10 +08:00
lint:
@printf "\nRunning luacheck\n"
2021-10-05 15:13:10 +08:00
luacheck lua/* test/*
@printf "\nRunning selene\n"
selene --display-style=quiet .
@printf "\nRunning stylua\n"
2021-10-05 15:13:10 +08:00
stylua --check .
.PHONY: test lint