Applied more formatting; added Makefile #4

Merged
elland merged 3 commits from formatting into dev 2025-09-27 07:51:11 +00:00
Showing only changes of commit 72909cb84b - Show all commits

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
.PHONY: help
help: ## Show this help.
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: format
format:
find . -type f -name "*.hs" ! -path "./dist-newstyle/*" -exec fourmolu -i {} +