harpoon/Makefile
2023-12-10 19:41:48 -07:00

14 lines
241 B
Makefile

fmt:
echo "===> Formatting"
stylua lua/ --config-path=.stylua.toml
lint:
echo "===> Linting"
luacheck lua/ --globals vim
test:
echo "===> Testing"
nvim --headless -c "PlenaryBustedDirectory lua/harpoon/test"
pr-ready: fmt lint test