aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3a52951..85ff804 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: doc test lint
+.PHONY: doc test lint fastlint
doc: scripts/nvim_doc_tools
python scripts/main.py generate
@@ -6,10 +6,12 @@ doc: scripts/nvim_doc_tools
test:
./run_tests.sh
-lint: scripts/nvim-typecheck-action scripts/nvim_doc_tools
+fastlint: scripts/nvim_doc_tools
python scripts/main.py lint
luacheck lua tests --formatter plain
stylua --check lua tests
+
+lint: scripts/nvim-typecheck-action fastlint
./scripts/nvim-typecheck-action/typecheck.sh lua
scripts/nvim_doc_tools: