eslint-config-prettier 6.13.0 → 6.14.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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### Version 6.14.0 (2020-10-21)
2
+
3
+ - Added: New [eslint-plugin-vue] rules: [vue/array-bracket-newline] and [vue/block-tag-newline]. Thanks to @xcatliu!
4
+
1
5
  ### Version 6.13.0 (2020-10-16)
2
6
 
3
7
  - Added: New rules in [eslint-plugin-vue] 7.0 (which supports Vue 3.0). Thanks to @xcatliu!
@@ -346,4 +350,6 @@
346
350
  [vue/html-self-closing-special]: https://github.com/prettier/eslint-config-prettier/blob/d5e7af986221df5faedc12893d8dc3150a808693/README.md#vuehtml-self-closing
347
351
  [vue/html-self-closing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/html-self-closing.md
348
352
  [vue/keyword-spacing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/keyword-spacing.md
353
+ [vue/keyword-spacing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/array-bracket-newline.md
354
+ [vue/keyword-spacing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/block-tag-newline.md
349
355
  [vue/max-len]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/max-len.md
package/README.md CHANGED
@@ -696,13 +696,13 @@ eslint-config-prettier has been tested with:
696
696
  - eslint-config-prettier 2.10.0 and older were tested with ESLint 4.x
697
697
  - eslint-config-prettier 2.1.1 and older were tested with ESLint 3.x
698
698
  - prettier 2.1.2
699
- - @typescript-eslint/eslint-plugin 4.4.1
699
+ - @typescript-eslint/eslint-plugin 4.5.0
700
700
  - eslint-plugin-babel 5.3.1
701
701
  - eslint-plugin-flowtype 5.2.0
702
- - eslint-plugin-react 7.21.4
702
+ - eslint-plugin-react 7.21.5
703
703
  - eslint-plugin-standard 4.0.1
704
- - eslint-plugin-unicorn 22.0.0
705
- - eslint-plugin-vue 7.0.1
704
+ - eslint-plugin-unicorn 23.0.0
705
+ - eslint-plugin-vue 7.1.0
706
706
 
707
707
  Have new rules been added since those versions? Have we missed any rules? Is there a plugin you would like to see exclusions for? Open an issue or a pull request!
708
708
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "6.13.0",
3
+ "version": "6.14.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.",
@@ -40,8 +40,8 @@
40
40
  "get-stdin": "^6.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@typescript-eslint/eslint-plugin": "4.4.1",
44
- "@typescript-eslint/parser": "4.4.1",
43
+ "@typescript-eslint/eslint-plugin": "4.5.0",
44
+ "@typescript-eslint/parser": "4.5.0",
45
45
  "babel-eslint": "10.1.0",
46
46
  "cross-spawn": "7.0.3",
47
47
  "doctoc": "1.4.0",
@@ -51,11 +51,11 @@
51
51
  "eslint-plugin-babel": "5.3.1",
52
52
  "eslint-plugin-flowtype": "5.2.0",
53
53
  "eslint-plugin-prettier": "3.1.4",
54
- "eslint-plugin-react": "7.21.4",
54
+ "eslint-plugin-react": "7.21.5",
55
55
  "eslint-plugin-standard": "4.0.1",
56
- "eslint-plugin-unicorn": "22.0.0",
57
- "eslint-plugin-vue": "7.0.1",
58
- "jest": "26.5.3",
56
+ "eslint-plugin-unicorn": "23.0.0",
57
+ "eslint-plugin-vue": "7.1.0",
58
+ "jest": "26.6.0",
59
59
  "prettier": "2.1.2",
60
60
  "replace": "1.2.0",
61
61
  "rimraf": "3.0.2",
package/vue.js CHANGED
@@ -5,9 +5,11 @@ module.exports = {
5
5
  "vue/html-self-closing": 0,
6
6
  "vue/max-len": 0,
7
7
 
8
+ "vue/array-bracket-newline": "off",
8
9
  "vue/array-bracket-spacing": "off",
9
10
  "vue/arrow-spacing": "off",
10
11
  "vue/block-spacing": "off",
12
+ "vue/block-tag-newline": "off",
11
13
  "vue/brace-style": "off",
12
14
  "vue/comma-dangle": "off",
13
15
  "vue/comma-spacing": "off",