Skip to content

Commit a28fbcf

Browse files
committed
Avoid unnecessary diffs in make comments
1 parent 92c1893 commit a28fbcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ style-todo: ## Configured for fourmolu, avoiding GHC parser failures
5555
@fourmolu -q $(FORMAT_DIRS_TODO) > /dev/null
5656

5757
.PHONY: style
58-
style: ## Run the code styler
58+
style: ## Run the code styler.
5959
@fourmolu -q -i $(FORMAT_DIRS)
6060

6161
.PHONY: style-modified
62-
style-modified: ## Run the code styler on modified files
62+
style-modified: ## Run the code styler on modified files.
6363
@git ls-files --modified $(FORMAT_DIRS) \
6464
| grep '.hs$$' | xargs -P $(PROCS) -I {} fourmolu -q -i {}
6565

6666
.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.
6868
@git diff --name-only HEAD $(COMMIT) -- $(FORMAT_DIRS) \
6969
| grep '.hs$$' | xargs -P $(PROCS) -I {} fourmolu -q -i {}
7070

0 commit comments

Comments
 (0)