-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc
33 lines (33 loc) · 852 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
{
"extends": "airbnb",
"env": {
"node": true,
"mocha": true,
"browser": true,
"es6": true
},
"globals": {
"expect": true,
"sinon": true
},
"parser": "babel-eslint",
"rules": {
"strict": 0,
"default-case": 0,
"indent": ["warn", 2, { "VariableDeclarator": 2 }],
"max-len": [2, 120],
"new-cap": ["error", { "capIsNew": false }],
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"react/jsx-filename-extension": 0,
"react/jsx-no-bind": [0, { "ignoreRefs": true }],
"react/forbid-prop-types": [2, { "forbid": ["any"] }],
"react/no-find-dom-node": 0,
"arrow-body-style": 0,
"jsx-a11y/no-static-element-interactions": 0,
"react/require-default-props": 0,
"arrow-parens": 0,
"import/no-named-as-default": 0
}
}