Update format to find all .elm files

This commit is contained in:
stuart nelson 2017-01-04 18:02:49 -05:00
parent a055108cdf
commit 7987e9d5df

View File

@ -1,2 +1,3 @@
format: $(wildcard src/*.elm)
ELM_FILES := $(shell find src -iname *.elm)
format: $(ELM_FILES)
elm-format --yes $?