-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
31 lines (31 loc) · 974 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"extends": ["standard", "standard-react"],
"parser": "babel-eslint",
"rules": {
"brace-style": [2, "stroustrup", {"allowSingleLine": true}],
"comma-dangle": [2, "only-multiline"],
"dot-notation": 0,
"eqeqeq": [2, "smart"],
"indent": ["error", 2, {
"MemberExpression": "off"
}],
"generator-star-spacing": 0,
"jsx-quotes": [2, "prefer-double"],
"no-void": 0,
"object-curly-spacing": 0,
"prefer-const": 0,
"quote-props": 0,
"quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"react/jsx-closing-tag-location": 0,
"react/jsx-indent": ["error", 2],
"react/jsx-no-bind": 0,
"react/jsx-space-before-closing": 0,
"react/jsx-tag-spacing": 0,
"react/no-unescaped-entities": [2, {"forbid": [">", "}"]}],
"react/no-unused-prop-types": 0,
"react/prop-types": 0,
"react/self-closing-comp": 0,
"space-before-function-paren": 0,
"wrap-iife": 0
}
}