-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc
30 lines (29 loc) · 836 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
{
"parser": "babel-eslint",
"extends": ["airbnb"],
"globals": {
"document": false
},
"plugins": [
"redux-saga"
],
"rules": {
"global-require": 0,
"import/prefer-default-export": 0,
"react/prop-types": 0,
"react/jsx-no-target-blank": 0,
"comma-dangle": 0,
"prefer-destructuring": ["error", {"object": false, "array": false}],
"consistent-return": 0,
"camelcase": 0,
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": "error",
"react/jsx-indent": ["error", 2],
"no-use-before-define": 0,
"no-shadow": "off",
"space-before-function-paren": [2, { "anonymous": "never", "named": "never" }],
"max-len": [1, 120, 2, {"ignoreComments": true}],
"import/no-extraneous-dependencies": 0,
"react/destructuring-assignment": [false]
}
}