aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2021-07-15 09:01:18 -0700
committerGitHub <noreply@github.com>2021-07-15 09:01:18 -0700
commit2b86e3fdaf735588d23709ddcdb89b093f6396dd (patch)
treee9443f53d99fc4ece965ebd2922b4a9557f384e8 /README.md
parent210433598a3072ed0ade022a580ac4522e491c01 (diff)
Add make targets for prettier formatting (#50)
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```