We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14757f5 commit 988e342Copy full SHA for 988e342
.eslintrc
@@ -1,6 +1,6 @@
1
{
2
- "parserOptions": {
3
- "ecmaVersion": 6,
+ "parserOptions": {
+ "ecmaVersion": 2017,
4
"ecmaFeatures": {
5
"jsx": true
6
}
@@ -12,18 +12,17 @@
12
"node": true,
13
"mocha": true
14
},
15
- "plugins": ["react"],
16
- "rules": {
+ "plugins": [
+ "react"
17
+ ],
18
+ rules: {
19
"jsx-quotes": ["error", "prefer-double"],
20
"react/jsx-uses-react": 2,
21
"react/jsx-uses-vars": 2,
- "no-console": ["error", { "allow": ["warn", "error"] }],
- "no-unused-vars": [
22
- "error",
23
- {
24
- "vars": "all",
25
- "args": "none"
26
- }
27
- ]
+ "no-console": ["error", { allow: ["warn", "error"] }],
+ "no-unused-vars": ["error", {
+ "vars": "all",
+ "args": "none"
+ }]
28
29
0 commit comments