eslint-config-prettier 6.8.0 → 6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### Version 6.9.0 (2019-12-27)
2
+
3
+ - Added: [vue/max-len]. Thanks to @xcatliu!
4
+
1
5
  ### Version 6.8.0 (2019-12-25)
2
6
 
3
7
  - Added: [@typescript-eslint/no-extra-semi]. Thanks to @xcatliu!
@@ -391,3 +395,4 @@
391
395
  [vue/html-self-closing-special]: https://github.com/prettier/eslint-config-prettier/blob/d5e7af986221df5faedc12893d8dc3150a808693/README.md#vuehtml-self-closing
392
396
  [vue/html-self-closing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/html-self-closing.md
393
397
  [vue/keyword-spacing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/keyword-spacing.md
398
+ [vue/max-len]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/max-len.md
package/README.md CHANGED
@@ -353,6 +353,8 @@ Example ESLint configuration:
353
353
 
354
354
  ### [max-len]
355
355
 
356
+ (The following applies to [vue/max-len] as well.)
357
+
356
358
  **This rule requires special attention when writing code.**
357
359
 
358
360
  Usually, Prettier takes care of following a maximum line length automatically.
@@ -804,7 +806,7 @@ eslint-config-prettier has been tested with:
804
806
  - eslint-plugin-react 7.17.0
805
807
  - eslint-plugin-standard 4.0.1
806
808
  - eslint-plugin-unicorn 15.0.1
807
- - eslint-plugin-vue 6.0.1
809
+ - eslint-plugin-vue 6.1.1
808
810
 
809
811
  Have new rules been added since those versions? Have we missed any rules? Is
810
812
  there a plugin you would like to see exclusions for? Open an issue or a pull
@@ -906,3 +908,4 @@ several other npm scripts:
906
908
  [travis-badge]: https://travis-ci.org/prettier/eslint-config-prettier.svg?branch=master
907
909
  [travis]: https://travis-ci.org/prettier/eslint-config-prettier
908
910
  [vue/html-self-closing]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/html-self-closing.md
911
+ [vue/max-len]: https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/max-len.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "6.8.0",
3
+ "version": "6.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.",
@@ -53,7 +53,7 @@
53
53
  "eslint-plugin-react": "7.17.0",
54
54
  "eslint-plugin-standard": "4.0.1",
55
55
  "eslint-plugin-unicorn": "15.0.1",
56
- "eslint-plugin-vue": "6.0.1",
56
+ "eslint-plugin-vue": "6.1.1",
57
57
  "jest": "24.9.0",
58
58
  "prettier": "1.19.1",
59
59
  "replace": "1.1.1",
package/vue.js CHANGED
@@ -3,6 +3,7 @@
3
3
  module.exports = {
4
4
  rules: {
5
5
  "vue/html-self-closing": 0,
6
+ "vue/max-len": 0,
6
7
 
7
8
  "vue/array-bracket-spacing": "off",
8
9
  "vue/arrow-spacing": "off",