aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorevuez <julien@mulga.net>2024-04-01 15:17:30 +0200
committerevuez <julien@mulga.net>2024-04-03 22:45:36 +0200
commit985974c264804ff788b3b5242fef707d4b7fa9a6 (patch)
treed80f83db178c3fd1b83b3b749793d47236dde35d /Makefile
downloadwebmaild-985974c264804ff788b3b5242fef707d4b7fa9a6.tar.gz
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1ccb5e5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+.PHONY: format
+format:
+ fourmolu -i app/
+ fourmolu -i src/
+
+.PHONY: lint
+lint:
+ find {app,src}/ | entr -c hlint src/ app/
+
+.PHONY: run
+run:
+ find {app,src}/ | entr -cr cabal new-run
+
+.PHONY: repl
+repl:
+ ghcid --allow-eval --lint --command "cabal repl"