aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1ccb5e52a74cac9309701eda9a4be858f25810da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"