Files
nvim-tree.lua/Makefile
Alexander Courtis 95b91463c0 ci: add Makefile
2023-12-31 16:40:05 +11:00

30 lines
295 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
#
update-help:
scripts/update-help.sh
.PHONY: all style lint check style-fix update-help