eslint-config-prettier 2.8.0 → 2.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 +5 -0
- package/README.md +2 -2
- package/index.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
### Version 2.9.0 (2017-11-26)
|
|
2
|
+
|
|
3
|
+
- Added: The [implicit-arrow-linebreak] rule.
|
|
4
|
+
|
|
1
5
|
### Version 2.8.0 (2017-11-19)
|
|
2
6
|
|
|
3
7
|
- Added: The [react/jsx-one-expression-per-line] rule.
|
|
@@ -142,6 +146,7 @@
|
|
|
142
146
|
[eslint-plugin-react]: https://github.com/yannickcr/eslint-plugin-react
|
|
143
147
|
[eslint-plugin-standard]: https://github.com/xjamundx/eslint-plugin-standard
|
|
144
148
|
[function-paren-newline]: https://eslint.org/docs/rules/function-paren-newline
|
|
149
|
+
[implicit-arrow-linebreak]: https://eslint.org/docs/rules/implicit-arrow-linebreak
|
|
145
150
|
[indent-legacy]: https://eslint.org/docs/rules/indent-legacy
|
|
146
151
|
[lines-around-comment-special]: https://github.com/prettier/eslint-config-prettier/blob/5399175c37466747aae9d407021dffec2c169c8b/README.md#lines-around-comment
|
|
147
152
|
[lines-around-comment]: https://eslint.org/docs/rules/lines-around-comment
|
package/README.md
CHANGED
|
@@ -446,10 +446,10 @@ Example configuration:
|
|
|
446
446
|
|
|
447
447
|
eslint-config-prettier has been tested with:
|
|
448
448
|
|
|
449
|
-
- ESLint 4.
|
|
449
|
+
- ESLint 4.12.0 (eslint-config-prettier 2.1.1 and older were tested with ESLint 3.x)
|
|
450
450
|
- prettier 1.8.2
|
|
451
451
|
- eslint-plugin-flowtype 2.39.1
|
|
452
|
-
- eslint-plugin-react 7.5.
|
|
452
|
+
- eslint-plugin-react 7.5.1
|
|
453
453
|
- eslint-plugin-standard 3.0.1
|
|
454
454
|
|
|
455
455
|
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": "2.
|
|
3
|
+
"version": "2.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.",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"babel-eslint": "^7.2.3",
|
|
37
37
|
"cross-spawn": "^5.1.0",
|
|
38
38
|
"dedent": "^0.7.0",
|
|
39
|
-
"eslint": "^4.
|
|
39
|
+
"eslint": "^4.12.0",
|
|
40
40
|
"eslint-config-google": "^0.9.1",
|
|
41
41
|
"eslint-plugin-flowtype": "^2.39.1",
|
|
42
42
|
"eslint-plugin-prettier": "^2.3.1",
|
|
43
|
-
"eslint-plugin-react": "^7.5.
|
|
43
|
+
"eslint-plugin-react": "^7.5.1",
|
|
44
44
|
"eslint-plugin-standard": "^3.0.1",
|
|
45
45
|
"prettier": "^1.8.2",
|
|
46
46
|
"rimraf": "^2.6.2"
|