aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-30 11:01:58 -0700
committerJohn MacFarlane <[email protected]>2022-10-30 11:01:58 -0700
commit55b8d0abee2086be12d7dc33f7848f74482ee7e8 (patch)
tree192bb2151fa08eef47766ef76f4f9b720501f683
parent5dc2927c8a7d4a8222200766216f4a4e88a87515 (diff)
make lint: remove apply-refact
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7ad26ec00..8108adc83 100644
--- a/Makefile
+++ b/Makefile
@@ -107,7 +107,7 @@ reformat: ## reformat with stylish-haskell
.PHONY: reformat
lint: ## run hlint
- for f in $(SOURCEFILES); do echo $$f; hlint --refactor --refactor-options='-s -o -' $$f; done
+ for f in $(SOURCEFILES); do echo $$f; hlint $$f; done
.PHONY: lint
fix_spacing: ## fix trailing newlines and spaces