Commit bfaf72e0 authored by Stan Hu's avatar Stan Hu

Fix documentation on using prettier for a specific directory

If the `check` parameter is used, the `allFiles` parameter is `false`,
which causes the prettier.js script only to process staged files.
The correct parameters are `check-all` and `save-all`.
parent 0a42c7cb
......@@ -47,13 +47,13 @@ The source of these Yarn scripts can be found in `/scripts/frontend/prettier.js`
### Scripts during Conversion period
```
node ./scripts/frontend/prettier.js check ./vendor/
node ./scripts/frontend/prettier.js check-all ./vendor/
```
This will go over all files in a specific folder check it.
```
node ./scripts/frontend/prettier.js save ./vendor/
node ./scripts/frontend/prettier.js save-all ./vendor/
```
This will go over all files in a specific folder and save it.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment