From 34b419984ea8e04683a49db0200c6d21d493b252 Mon Sep 17 00:00:00 2001 From: Max Zawisa Date: Tue, 2 Jan 2024 09:02:02 -0500 Subject: [PATCH] feat: makefile for test cleanup --- .editorconfig | 3 +++ Makefile | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/.editorconfig b/.editorconfig index 8529c8b..429a9b0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,3 +7,6 @@ end_of_line = lf indent_style = space indent_size = 4 insert_final_newline = true + +[{Makefile,*.mk}] +indent_style = tab diff --git a/Makefile b/Makefile index 702e97a..d6b2e5c 100644 --- a/Makefile +++ b/Makefile @@ -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