From 7f10fe9ae43c0c55f5d03fcaa63b848d745d6cad Mon Sep 17 00:00:00 2001 From: acolytec3 <17355484+acolytec3@users.noreply.github.com> Date: Mon, 6 Jan 2020 06:45:15 -0500 Subject: [PATCH] Add lint-fix target for simple style fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 702f98ed3a..5164258c99 100644 --- a/Makefile +++ b/Makefile @@ -273,6 +273,10 @@ lint: export TARGET := lein lint: ##@test Run code style checks lein cljfmt check +lint-fix: export TARGET := lein +lint-fix: ##@test Run code style checks and fix issues + lein cljfmt fix + test: export TARGET := lein test: ##@test Run tests once in NodeJS lein with-profile test doo node test once