@vyriy/prettier-config 0.4.1 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,14 @@ npx prettier index.ts --write
|
|
|
55
55
|
|
|
56
56
|
If Prettier cannot parse a file, it stops and reports the syntax error location instead of rewriting the file.
|
|
57
57
|
|
|
58
|
+
Use `.prettierignore` to skip generated and dependency directories. Vyriy projects ignore:
|
|
59
|
+
|
|
60
|
+
- `node_modules`
|
|
61
|
+
- `coverage`
|
|
62
|
+
- `dist`
|
|
63
|
+
- `storybook-static`
|
|
64
|
+
- `consumer`
|
|
65
|
+
|
|
58
66
|
## Formatting Scope
|
|
59
67
|
|
|
60
68
|
Prettier controls multiline arrays through `prettier-plugin-multiline-arrays`.
|