mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-13 17:40:25 +00:00
14 lines
241 B
Makefile
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
|