forked from pburtchaell/redux-promise-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
38 lines (38 loc) · 757 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
33
34
35
36
37
38
{
"extends": "eslint-config-airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"rules": {
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/jsx-filename-extension": 0,
"padded-blocks": 0,
"block-scoped-var": 0,
"comma-dangle": 0,
"arrow-parens": 0,
"no-extra-boolean-cast": 0,
"import/no-extraneous-dependencies": 0,
"import/first": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"brace-style": 0
},
"plugins": [
"react"
],
"globals": {
"expect": true,
"chai": true,
"sinon": true
}
}