eslint-config-prettier 6.14.0 → 6.15.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/@typescript-eslint.js +1 -0
- package/CHANGELOG.md +5 -0
- package/README.md +3 -3
- package/package.json +7 -7
package/@typescript-eslint.js
CHANGED
|
@@ -15,6 +15,7 @@ module.exports = {
|
|
|
15
15
|
"@typescript-eslint/no-extra-semi": "off",
|
|
16
16
|
"@typescript-eslint/semi": "off",
|
|
17
17
|
"@typescript-eslint/space-before-function-paren": "off",
|
|
18
|
+
"@typescript-eslint/space-infix-ops": "off",
|
|
18
19
|
"@typescript-eslint/type-annotation-spacing": "off",
|
|
19
20
|
},
|
|
20
21
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
### Version 6.15.0 (2020-10-27)
|
|
2
|
+
|
|
3
|
+
- Added: [@typescript-eslint/space-infix-ops]. Thanks to Masafumi Koba (@ybiquitous)!!
|
|
4
|
+
|
|
1
5
|
### Version 6.14.0 (2020-10-21)
|
|
2
6
|
|
|
3
7
|
- Added: New [eslint-plugin-vue] rules: [vue/array-bracket-newline] and [vue/block-tag-newline]. Thanks to @xcatliu!
|
|
@@ -293,6 +297,7 @@
|
|
|
293
297
|
[@typescript-eslint/quotes]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/quotes.md
|
|
294
298
|
[@typescript-eslint/semi]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/semi.md
|
|
295
299
|
[@typescript-eslint/space-before-function-paren]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/space-before-function-paren.md
|
|
300
|
+
[@typescript-eslint/space-infix-ops]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/space-infix-ops.md
|
|
296
301
|
[array-bracket-newline]: https://eslint.org/docs/rules/array-bracket-newline
|
|
297
302
|
[array-element-newline]: https://eslint.org/docs/rules/array-element-newline
|
|
298
303
|
[arrow-body-style]: https://eslint.org/docs/rules/arrow-body-style
|
package/README.md
CHANGED
|
@@ -690,17 +690,17 @@ You can also supply a custom message if you want:
|
|
|
690
690
|
|
|
691
691
|
eslint-config-prettier has been tested with:
|
|
692
692
|
|
|
693
|
-
- ESLint 7.
|
|
693
|
+
- ESLint 7.12.1
|
|
694
694
|
- eslint-config-prettier 6.11.0 and older were tested with ESLint 6.x
|
|
695
695
|
- eslint-config-prettier 5.1.0 and older were tested with ESLint 5.x
|
|
696
696
|
- eslint-config-prettier 2.10.0 and older were tested with ESLint 4.x
|
|
697
697
|
- eslint-config-prettier 2.1.1 and older were tested with ESLint 3.x
|
|
698
698
|
- prettier 2.1.2
|
|
699
|
-
- @typescript-eslint/eslint-plugin 4.
|
|
699
|
+
- @typescript-eslint/eslint-plugin 4.6.0
|
|
700
700
|
- eslint-plugin-babel 5.3.1
|
|
701
701
|
- eslint-plugin-flowtype 5.2.0
|
|
702
702
|
- eslint-plugin-react 7.21.5
|
|
703
|
-
- eslint-plugin-standard 4.0.
|
|
703
|
+
- eslint-plugin-standard 4.0.2
|
|
704
704
|
- eslint-plugin-unicorn 23.0.0
|
|
705
705
|
- eslint-plugin-vue 7.1.0
|
|
706
706
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-prettier",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.15.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": "4.
|
|
44
|
-
"@typescript-eslint/parser": "4.
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "4.6.0",
|
|
44
|
+
"@typescript-eslint/parser": "4.6.0",
|
|
45
45
|
"babel-eslint": "10.1.0",
|
|
46
46
|
"cross-spawn": "7.0.3",
|
|
47
47
|
"doctoc": "1.4.0",
|
|
48
|
-
"eslint": "7.
|
|
48
|
+
"eslint": "7.12.1",
|
|
49
49
|
"eslint-config-google": "0.14.0",
|
|
50
50
|
"eslint-find-rules": "3.6.1",
|
|
51
51
|
"eslint-plugin-babel": "5.3.1",
|
|
52
52
|
"eslint-plugin-flowtype": "5.2.0",
|
|
53
53
|
"eslint-plugin-prettier": "3.1.4",
|
|
54
54
|
"eslint-plugin-react": "7.21.5",
|
|
55
|
-
"eslint-plugin-standard": "4.0.
|
|
55
|
+
"eslint-plugin-standard": "4.0.2",
|
|
56
56
|
"eslint-plugin-unicorn": "23.0.0",
|
|
57
57
|
"eslint-plugin-vue": "7.1.0",
|
|
58
|
-
"jest": "26.6.
|
|
58
|
+
"jest": "26.6.1",
|
|
59
59
|
"prettier": "2.1.2",
|
|
60
60
|
"replace": "1.2.0",
|
|
61
61
|
"rimraf": "3.0.2",
|
|
62
|
-
"typescript": "4.0.
|
|
62
|
+
"typescript": "4.0.5"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"eslint": ">=3.14.1"
|