eslint-config-prettier 4.1.0 → 4.2.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.
@@ -4,6 +4,7 @@ module.exports = {
4
4
  rules: {
5
5
  "@typescript-eslint/indent": "off",
6
6
  "@typescript-eslint/member-delimiter-style": "off",
7
+ "@typescript-eslint/no-extra-parens": "off",
7
8
  "@typescript-eslint/type-annotation-spacing": "off"
8
9
  }
9
10
  };
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### Version 4.2.0 (2019-04-25)
2
+
3
+ - Added: [@typescript-eslint/no-extra-parens]. Thanks to Keiichiro Amemiya
4
+ (@Hoishin) and Jen Gorfine (@jgorfine)!
5
+
1
6
  ### Version 4.1.0 (2019-02-26)
2
7
 
3
8
  - Added: [linebreak-style]. Use Prettier’s [end-of-line] option instead.
@@ -213,6 +218,7 @@
213
218
  - Initial release.
214
219
 
215
220
  [@typescript-eslint/eslint-plugin]: https://github.com/typescript-eslint/typescript-eslint
221
+ [@typescript-eslint/no-extra-parens]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-extra-parens.md
216
222
  [ESLint 4.0.0]: https://eslint.org/blog/2017/06/eslint-v4.0.0-released
217
223
  [ESLint 4.6.0]: https://eslint.org/blog/2017/09/eslint-v4.6.0-released
218
224
  [array-bracket-newline]: https://eslint.org/docs/rules/array-bracket-newline
package/README.md CHANGED
@@ -764,16 +764,16 @@ You can also supply a custom message if you want:
764
764
 
765
765
  eslint-config-prettier has been tested with:
766
766
 
767
- - ESLint 5.14.1
767
+ - ESLint 5.16.0
768
768
  - eslint-config-prettier 2.10.0 and older were tested with ESLint 4.x
769
769
  - eslint-config-prettier 2.1.1 and older were tested with ESLint 3.x
770
- - prettier 1.16.4
771
- - @typescript-eslint/eslint-plugin 1.4.2
770
+ - prettier 1.17.0
771
+ - @typescript-eslint/eslint-plugin 1.7.0
772
772
  - eslint-plugin-babel 5.3.0
773
- - eslint-plugin-flowtype 3.4.2
773
+ - eslint-plugin-flowtype 3.6.1
774
774
  - eslint-plugin-react 7.12.4
775
775
  - eslint-plugin-standard 4.0.0
776
- - eslint-plugin-unicorn 7.1.0
776
+ - eslint-plugin-unicorn 8.0.2
777
777
  - eslint-plugin-vue 5.1.0
778
778
 
779
779
  Have new rules been added since those versions? Have we missed any rules? Is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "4.1.0",
3
+ "version": "4.2.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.",
@@ -38,25 +38,25 @@
38
38
  "get-stdin": "^6.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@typescript-eslint/eslint-plugin": "1.4.2",
42
- "@typescript-eslint/parser": "1.4.2",
41
+ "@typescript-eslint/eslint-plugin": "1.7.0",
42
+ "@typescript-eslint/parser": "1.7.0",
43
43
  "babel-eslint": "10.0.1",
44
44
  "cross-spawn": "6.0.5",
45
45
  "doctoc": "1.4.0",
46
- "eslint": "5.14.1",
46
+ "eslint": "5.16.0",
47
47
  "eslint-config-google": "0.12.0",
48
48
  "eslint-plugin-babel": "5.3.0",
49
- "eslint-plugin-flowtype": "3.4.2",
49
+ "eslint-plugin-flowtype": "3.6.1",
50
50
  "eslint-plugin-prettier": "3.0.1",
51
51
  "eslint-plugin-react": "7.12.4",
52
52
  "eslint-plugin-standard": "4.0.0",
53
- "eslint-plugin-unicorn": "7.1.0",
53
+ "eslint-plugin-unicorn": "8.0.2",
54
54
  "eslint-plugin-vue": "github:vuejs/eslint-plugin-vue#9c49dcc8ff792ec6798037bd6b7f4ac3d26fdf68",
55
- "jest": "24.1.0",
56
- "prettier": "1.16.4",
57
- "replace": "1.0.1",
55
+ "jest": "24.7.1",
56
+ "prettier": "1.17.0",
57
+ "replace": "1.1.0",
58
58
  "rimraf": "2.6.3",
59
- "typescript": "3.3.3333"
59
+ "typescript": "3.4.5"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "eslint": ">=3.14.1"