Update README.md
authorChristopher Yin <ctyin@seas.upenn.edu>
Sat, 1 Aug 2020 08:30:46 +0000 (04:30 -0400)
committerGitHub <noreply@github.com>
Sat, 1 Aug 2020 08:30:46 +0000 (04:30 -0400)
Closest flag to this is the --ignore-path option in the Prettier docs, but it's different (path to a list of ignored directories). Doesn't seem necessary to include here as it already looks for the ./.prettierignore file

prettier/README.md

index 2eb64ed1116c4750bdfbc03c0c02dcd060f461a5..b54347f5cf7cc593c054bd6e0c3f5042f3bc83fb 100644 (file)
@@ -20,13 +20,13 @@ npm install -g prettier@latest
 Prettify all web files in a project, recursively:
 
 ```bash
-prettier --write '**/*{.md,.js,.html,.css}' --ignore ./dist
+prettier --write '**/*{.md,.js,.html,.css}'
 ```
 
 Tell Prettier which files to ignore every time
 
 ```bash
-echo "./dist" >> .prettierignore
+echo "dist/" >> .prettierignore
 ```
 
 Tell Prettier which settings to use - do NOT use `package.json` when it's not