Merge pull request #470 from maxrzaw/makefile-cleanup

feat: Makefile target for test cleanup
This commit is contained in:
ThePrimeagen 2024-01-05 15:19:23 -07:00 committed by GitHub
commit 7124806533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -7,3 +7,6 @@ end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
[{Makefile,*.mk}]
indent_style = tab

View File

@ -11,4 +11,8 @@ test:
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