eslint-config-prettier 8.8.0 → 8.10.0
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 +2 -0
- package/index.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,4 +6,6 @@ This lets you use your favorite shareable config without letting its stylistic c
|
|
|
6
6
|
|
|
7
7
|
Note that this config _only_ turns rules _off,_ so it only makes sense using it together with some other config.
|
|
8
8
|
|
|
9
|
+
[prettier]: https://github.com/prettier/prettier
|
|
10
|
+
|
|
9
11
|
**[➡️ Full readme](https://github.com/prettier/eslint-config-prettier/)**
|
package/index.js
CHANGED
|
@@ -45,6 +45,7 @@ module.exports = {
|
|
|
45
45
|
"key-spacing": "off",
|
|
46
46
|
"keyword-spacing": "off",
|
|
47
47
|
"linebreak-style": "off",
|
|
48
|
+
"max-statements-per-line": "off",
|
|
48
49
|
"multiline-ternary": "off",
|
|
49
50
|
"newline-per-chained-call": "off",
|
|
50
51
|
"new-parens": "off",
|
|
@@ -135,6 +136,7 @@ module.exports = {
|
|
|
135
136
|
"unicorn/number-literal-case": "off",
|
|
136
137
|
"vue/array-bracket-newline": "off",
|
|
137
138
|
"vue/array-bracket-spacing": "off",
|
|
139
|
+
"vue/array-element-newline": "off",
|
|
138
140
|
"vue/arrow-spacing": "off",
|
|
139
141
|
"vue/block-spacing": "off",
|
|
140
142
|
"vue/block-tag-newline": "off",
|