eslint-config-prettier 8.8.0 → 8.9.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.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/index.js +1 -0
  3. 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
@@ -135,6 +135,7 @@ module.exports = {
135
135
  "unicorn/number-literal-case": "off",
136
136
  "vue/array-bracket-newline": "off",
137
137
  "vue/array-bracket-spacing": "off",
138
+ "vue/array-element-newline": "off",
138
139
  "vue/arrow-spacing": "off",
139
140
  "vue/block-spacing": "off",
140
141
  "vue/block-tag-newline": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "8.8.0",
3
+ "version": "8.9.0",
4
4
  "license": "MIT",
5
5
  "author": "Simon Lydell",
6
6
  "description": "Turns off all rules that are unnecessary or might conflict with Prettier.",