forked from agraboso/redux-api-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
29 lines (29 loc) · 745 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",
"plugins": ["babel"],
"env": {
"browser": true,
"es6": true
},
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"modules": true
},
"rules": {
"babel/arrow-parens": [2, "always"],
"no-underscore-dangle": 0,
"strict": [2, "global"],
"eqeqeq": [2, "smart"],
"no-undef": 2,
"no-console": 1,
"no-nested-ternary": 2,
"indent": [2, 2],
"quotes": [2, "single"],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"object-curly-spacing": [2, "always"],
"eol-last": 2,
"padded-blocks": [2, "never"],
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
"space-before-blocks": [2, "always"]
}
}