eslint-config-prettier 6.11.0 → 6.12.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.
@@ -5,6 +5,7 @@ module.exports = {
5
5
  "@typescript-eslint/quotes": 0,
6
6
 
7
7
  "@typescript-eslint/brace-style": "off",
8
+ "@typescript-eslint/comma-dangle": "off",
8
9
  "@typescript-eslint/comma-spacing": "off",
9
10
  "@typescript-eslint/func-call-spacing": "off",
10
11
  "@typescript-eslint/indent": "off",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
+ ### Version 6.12.0 (2020-09-25)
2
+
3
+ - Added: [@typescript-eslint/comma-dangle]. Thanks to Masafumi Koba (@ybiquitous)!!
4
+
1
5
  ### Version 6.11.0 (2020-04-21)
2
6
 
3
- - Added: [@typescript-eslint/keyword-spacing]. Thanks to Hans Bergren (@hbergren)!!
7
+ - Added: [@typescript-eslint/keyword-spacing]. Thanks to Hans Bergren (@hbergren)!
4
8
 
5
9
  ### Version 6.10.1 (2020-03-22)
6
10
 
@@ -270,6 +274,7 @@
270
274
  - Initial release.
271
275
 
272
276
  [@typescript-eslint/brace-style]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/brace-style.md
277
+ [@typescript-eslint/comma-dangle]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/comma-dangle.md
273
278
  [@typescript-eslint/comma-spacing]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/comma-spacing.md
274
279
  [@typescript-eslint/eslint-plugin]: https://github.com/typescript-eslint/typescript-eslint
275
280
  [@typescript-eslint/func-call-spacing]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/func-call-spacing.md
package/README.md CHANGED
@@ -734,17 +734,18 @@ You can also supply a custom message if you want:
734
734
 
735
735
  eslint-config-prettier has been tested with:
736
736
 
737
- - ESLint 6.8.0
737
+ - ESLint 7.9.0
738
+ - eslint-config-prettier 6.11.0 and older were tested with ESLint 6.x
738
739
  - eslint-config-prettier 5.1.0 and older were tested with ESLint 5.x
739
740
  - eslint-config-prettier 2.10.0 and older were tested with ESLint 4.x
740
741
  - eslint-config-prettier 2.1.1 and older were tested with ESLint 3.x
741
- - prettier 2.0.5
742
- - @typescript-eslint/eslint-plugin 2.29.0
743
- - eslint-plugin-babel 5.3.0
744
- - eslint-plugin-flowtype 4.7.0
745
- - eslint-plugin-react 7.19.0
742
+ - prettier 2.1.2
743
+ - @typescript-eslint/eslint-plugin 4.2.0
744
+ - eslint-plugin-babel 5.3.1
745
+ - eslint-plugin-flowtype 5.2.0
746
+ - eslint-plugin-react 7.21.2
746
747
  - eslint-plugin-standard 4.0.1
747
- - eslint-plugin-unicorn 18.0.1
748
+ - eslint-plugin-unicorn 22.0.0
748
749
  - eslint-plugin-vue 6.2.2
749
750
 
750
751
  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!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "6.11.0",
3
+ "version": "6.12.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,26 +40,26 @@
40
40
  "get-stdin": "^6.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@typescript-eslint/eslint-plugin": "2.29.0",
44
- "@typescript-eslint/parser": "2.29.0",
43
+ "@typescript-eslint/eslint-plugin": "4.2.0",
44
+ "@typescript-eslint/parser": "4.2.0",
45
45
  "babel-eslint": "10.1.0",
46
- "cross-spawn": "7.0.2",
46
+ "cross-spawn": "7.0.3",
47
47
  "doctoc": "1.4.0",
48
- "eslint": "6.8.0",
48
+ "eslint": "7.9.0",
49
49
  "eslint-config-google": "0.14.0",
50
- "eslint-find-rules": "3.4.0",
51
- "eslint-plugin-babel": "5.3.0",
52
- "eslint-plugin-flowtype": "4.7.0",
53
- "eslint-plugin-prettier": "3.1.3",
54
- "eslint-plugin-react": "7.19.0",
50
+ "eslint-find-rules": "3.6.1",
51
+ "eslint-plugin-babel": "5.3.1",
52
+ "eslint-plugin-flowtype": "5.2.0",
53
+ "eslint-plugin-prettier": "3.1.4",
54
+ "eslint-plugin-react": "7.21.2",
55
55
  "eslint-plugin-standard": "4.0.1",
56
- "eslint-plugin-unicorn": "18.0.1",
56
+ "eslint-plugin-unicorn": "22.0.0",
57
57
  "eslint-plugin-vue": "6.2.2",
58
- "jest": "25.4.0",
59
- "prettier": "2.0.5",
60
- "replace": "1.1.5",
58
+ "jest": "26.4.2",
59
+ "prettier": "2.1.2",
60
+ "replace": "1.2.0",
61
61
  "rimraf": "3.0.2",
62
- "typescript": "3.7.5"
62
+ "typescript": "4.0.3"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "eslint": ">=3.14.1"