aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5d4fe19..5b8fc3d 100644
--- a/README.md
+++ b/README.md
@@ -27,14 +27,14 @@ make run
27This project uses [Prettier](https://prettier.io/) formatting and all pull requests must pass 27This project uses [Prettier](https://prettier.io/) formatting and all pull requests must pass
28the automated lint checks prior to merging. 28the automated lint checks prior to merging.
29 29
30Run the link check with: 30Run the lint check with:
31 31
32``` 32```
33npx prettier --check . '!**/*.min.{css,js}' 33make fmt
34``` 34```
35 35
36Rewrite the files to resolve any style issues with: 36Rewrite the files to resolve any style issues with:
37 37
38``` 38```
39npx prettier --write . '!**/*.min.{css,js}' 39make fmt.write
40``` 40```