Hagia
log in
morj / hagia
overview
files
history
wiki
Viewing at
.PHONY: format lint

SOURCES = $(shell find . -type f -name '*.hs')

format:
for file in $(SOURCES); do echo "Formatting $$file"; fourmolu -i "$$file"; done

lint:
hlint -g -XQuasiQuotes