-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc
32 lines (32 loc) · 908 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
32
{
"parser": "babel-eslint",
"extends": "airbnb",
"globals": {
"__DEV__": true
},
"rules": {
"semi": [2, "never"],
"jsx-quotes": [2, "prefer-double"],
"arrow-parens": 0,
"no-underscore-dangle": 0,
"no-undef": 0,
"quotes": [2, "double", {"avoidEscape": true, "allowTemplateLiterals": true}],
"react/jsx-filename-extension": [2, {"extensions": [".js"]}],
"react/jsx-first-prop-new-line": [1, "multiline"],
"linebreak-style": 0,
"react/no-danger": 0,
"react/forbid-prop-types": 0,
"no-prototype-builtins": 0,
"react/jsx-quotes": 0,
"react/prop-types": 0,
"react/jsx-closing-bracket-location": 1,
"object-curly-spacing": [2, "never"],
"import/no-extraneous-dependencies": 0,
"curly": 0,
"max-len": [1, {"code": 88}],
"comma-dangle": 0,
"object-shorthand": 0,
"import/first": 0,
"import/extensions": 0
}
}