aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-30 12:36:48 -0700
committerJohn MacFarlane <[email protected]>2022-10-30 12:37:19 -0700
commitc7af10fe8957f544407397a56a0c0724b41845d1 (patch)
treef641085c8a404eeeeae9147304d59edb9a381ef0 /Makefile
parent8b3be07ae8566f29cbf73062d87c9dd44f99f566 (diff)
hlint suggestions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8108adc83..f73791a6c 100644
--- a/Makefile
+++ b/Makefile
@@ -107,7 +107,8 @@ reformat: ## reformat with stylish-haskell
.PHONY: reformat
lint: ## run hlint
- for f in $(SOURCEFILES); do echo $$f; hlint $$f; done
+ hlint --report=hlint.html $(SOURCEFILES)
+ open hlint.html
.PHONY: lint
fix_spacing: ## fix trailing newlines and spaces