We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 771c5e9 commit b1c0030Copy full SHA for b1c0030
1 file changed
.eslintrc
@@ -59,5 +59,26 @@
59
"$FlowIssue": false,
60
"$FlowFixMe": false,
61
"$FixMe": false
62
+ },
63
+ "rules": {
64
+ "eqeqeq": "warn",
65
+ "indent": "warn",
66
+ "no-mixed-spaces-and-tabs": "warn",
67
+ "no-multi-spaces": "warn",
68
+ "no-return-assign": "warn",
69
+ "no-return-await": "warn",
70
+ "no-tabs": "warn",
71
+ "no-unused-vars": [
72
+ "warn",
73
+ {
74
+ "vars": "all",
75
+ "args": "none",
76
+ "varsIgnorePattern": "React"
77
+ }
78
+ ],
79
+ "react/no-unused-prop-types": "warn",
80
+ "react/prop-types": 0,
81
+ "standard/array-bracket-even-spacing": "warn",
82
+ "standard/object-curly-even-spacing": "warn"
83
}
84
0 commit comments