File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,16 +55,16 @@ style-todo: ## Configured for fourmolu, avoiding GHC parser failures
55
55
@fourmolu -q $(FORMAT_DIRS_TODO ) > /dev/null
56
56
57
57
.PHONY : style
58
- style : # # Run the code styler
58
+ style : # # Run the code styler.
59
59
@fourmolu -q -i $(FORMAT_DIRS )
60
60
61
61
.PHONY : style-modified
62
- style-modified : # # Run the code styler on modified files
62
+ style-modified : # # Run the code styler on modified files.
63
63
@git ls-files --modified $(FORMAT_DIRS ) \
64
64
| grep ' .hs$$' | xargs -P $(PROCS ) -I {} fourmolu -q -i {}
65
65
66
66
.PHONY : style-commit
67
- style-commit : # # Run the code styler on the previous commit
67
+ style-commit : # # Run the code styler on the previous commit.
68
68
@git diff --name-only HEAD $(COMMIT ) -- $(FORMAT_DIRS ) \
69
69
| grep ' .hs$$' | xargs -P $(PROCS ) -I {} fourmolu -q -i {}
70
70
You can’t perform that action at this time.
0 commit comments