nvim-tree.lua/Makefile
2023-12-31 17:28:59 +11:00

36 lines
384 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: help-update
git diff --exit-code doc/nvim-tree-lua.txt
.PHONY: all style lint check style-fix help-check help-update