eslint-config-prettier 6.0.0 → 6.1.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 +7 -0
- package/README.md +5 -5
- package/index.js +1 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
### Version 6.1.0 (2019-08-19)
|
|
2
|
+
|
|
3
|
+
- Added: [function-call-argument-newline] \(new in ESLint 6.2.0). Thanks to
|
|
4
|
+
Masafumi Koba (@ybiquitous)!
|
|
5
|
+
|
|
1
6
|
### Version 6.0.0 (2019-06-25)
|
|
2
7
|
|
|
3
8
|
- Changed: The CLI helper tool now considers [no-confusing-arrow] to conflict
|
|
@@ -297,6 +302,7 @@
|
|
|
297
302
|
[end-of-line]: https://prettier.io/docs/en/options.html#end-of-line
|
|
298
303
|
[ESLint 4.0.0]: https://eslint.org/blog/2017/06/eslint-v4.0.0-released
|
|
299
304
|
[ESLint 4.6.0]: https://eslint.org/blog/2017/09/eslint-v4.6.0-released
|
|
305
|
+
[eslint-plugin-babel]: https://github.com/babel/eslint-plugin-babel
|
|
300
306
|
[eslint-plugin-flowtype]: https://github.com/gajus/eslint-plugin-flowtype
|
|
301
307
|
[eslint-plugin-prettier]: https://github.com/prettier/eslint-plugin-prettier
|
|
302
308
|
[eslint-plugin-react]: https://github.com/yannickcr/eslint-plugin-react
|
|
@@ -305,6 +311,7 @@
|
|
|
305
311
|
[eslint-plugin-unicorn]: https://github.com/sindresorhus/eslint-plugin-unicorn
|
|
306
312
|
[eslint-plugin-vue]: https://github.com/vuejs/eslint-plugin-vue
|
|
307
313
|
[flowtype/boolean-style]: https://github.com/gajus/eslint-plugin-flowtype#eslint-plugin-flowtype-rules-boolean-style
|
|
314
|
+
[function-call-argument-newline]: https://eslint.org/docs/rules/function-call-argument-newline
|
|
308
315
|
[function-paren-newline]: https://eslint.org/docs/rules/function-paren-newline
|
|
309
316
|
[implicit-arrow-linebreak]: https://eslint.org/docs/rules/implicit-arrow-linebreak
|
|
310
317
|
[indent-legacy]: https://eslint.org/docs/rules/indent-legacy
|
package/README.md
CHANGED
|
@@ -780,17 +780,17 @@ You can also supply a custom message if you want:
|
|
|
780
780
|
|
|
781
781
|
eslint-config-prettier has been tested with:
|
|
782
782
|
|
|
783
|
-
- ESLint 6.0
|
|
783
|
+
- ESLint 6.2.0
|
|
784
784
|
- eslint-config-prettier 5.1.0 and older were tested with ESLint 5.x
|
|
785
785
|
- eslint-config-prettier 2.10.0 and older were tested with ESLint 4.x
|
|
786
786
|
- eslint-config-prettier 2.1.1 and older were tested with ESLint 3.x
|
|
787
787
|
- prettier 1.18.2
|
|
788
|
-
- @typescript-eslint/eslint-plugin
|
|
788
|
+
- @typescript-eslint/eslint-plugin 2.0.0
|
|
789
789
|
- eslint-plugin-babel 5.3.0
|
|
790
|
-
- eslint-plugin-flowtype
|
|
791
|
-
- eslint-plugin-react 7.14.
|
|
790
|
+
- eslint-plugin-flowtype 4.2.0
|
|
791
|
+
- eslint-plugin-react 7.14.3
|
|
792
792
|
- eslint-plugin-standard 4.0.0
|
|
793
|
-
- eslint-plugin-unicorn
|
|
793
|
+
- eslint-plugin-unicorn 10.0.0
|
|
794
794
|
- eslint-plugin-vue 5.2.3
|
|
795
795
|
|
|
796
796
|
Have new rules been added since those versions? Have we missed any rules? Is
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-prettier",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.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": "
|
|
42
|
-
"@typescript-eslint/parser": "
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "2.0.0",
|
|
42
|
+
"@typescript-eslint/parser": "2.0.0",
|
|
43
43
|
"babel-eslint": "10.0.2",
|
|
44
44
|
"cross-spawn": "6.0.5",
|
|
45
45
|
"doctoc": "1.4.0",
|
|
46
|
-
"eslint": "6.0
|
|
46
|
+
"eslint": "6.2.0",
|
|
47
47
|
"eslint-config-google": "0.13.0",
|
|
48
48
|
"eslint-plugin-babel": "5.3.0",
|
|
49
|
-
"eslint-plugin-flowtype": "
|
|
49
|
+
"eslint-plugin-flowtype": "4.2.0",
|
|
50
50
|
"eslint-plugin-prettier": "3.1.0",
|
|
51
|
-
"eslint-plugin-react": "7.14.
|
|
51
|
+
"eslint-plugin-react": "7.14.3",
|
|
52
52
|
"eslint-plugin-standard": "4.0.0",
|
|
53
|
-
"eslint-plugin-unicorn": "
|
|
53
|
+
"eslint-plugin-unicorn": "10.0.0",
|
|
54
54
|
"eslint-plugin-vue": "5.2.3",
|
|
55
|
-
"jest": "24.
|
|
55
|
+
"jest": "24.9.0",
|
|
56
56
|
"prettier": "1.18.2",
|
|
57
57
|
"replace": "1.1.0",
|
|
58
|
-
"rimraf": "
|
|
59
|
-
"typescript": "3.5.
|
|
58
|
+
"rimraf": "3.0.0",
|
|
59
|
+
"typescript": "3.5.3"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"eslint": ">=3.14.1"
|