summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2018-11-23 21:48:01 -0800
committerStan Hu <stanhu@gmail.com>2018-11-23 22:02:52 -0800
commitbfaf72e008262e4bdba6ec75986f341a29fcea43 (patch)
tree5fc7cce7b4c5469b1971c01d5a15bfa4c4629b38
parent0a42c7cbaae51466a67a4011859726c29bc24da4 (diff)
downloadgitlab-ce-sh-improve-prettier-docs.tar.gz
Fix documentation on using prettier for a specific directorysh-improve-prettier-docs
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`.
-rw-r--r--doc/development/new_fe_guide/style/prettier.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/new_fe_guide/style/prettier.md b/doc/development/new_fe_guide/style/prettier.md
index 6395af6f815..baaea67d38b 100644
--- a/doc/development/new_fe_guide/style/prettier.md
+++ b/doc/development/new_fe_guide/style/prettier.md
@@ -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.