Files
nvim-tree.lua/Makefile
Alexander Courtis e1fae6906e ci: add help check
2023-12-31 17:27:49 +11:00

37 lines
396 B
Makefile

all: lint style check
#
# mandatory checks
#
lint:
luacheck -q lua
scripts/doc-comments.sh
style:
stylua lua --check
check:
scripts/luals-check.sh
#
# fixes
#
style-fix:
stylua lua
#
# utility
#
help-update:
scripts/help-update.sh
#
# CI
#
help-check:
scripts/help-update.sh
git diff --exit-code doc/nvim-tree-lua.txt
.PHONY: all style lint check style-fix help-check help-update