mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-13 17:40:25 +00:00
19 lines
382 B
Makefile
19 lines
382 B
Makefile
fmt:
|
|
echo "===> Formatting"
|
|
stylua lua/ --config-path=.stylua.toml
|
|
|
|
lint:
|
|
echo "===> Linting"
|
|
luacheck lua/ --globals vim
|
|
|
|
test:
|
|
echo "===> Testing"
|
|
nvim --headless --noplugin -u scripts/tests/minimal.vim \
|
|
-c "PlenaryBustedDirectory lua/harpoon/test/ {minimal_init = 'scripts/tests/minimal.vim'}"
|
|
|
|
clean:
|
|
echo "===> Cleaning"
|
|
rm /tmp/lua_*
|
|
|
|
pr-ready: fmt lint test
|