forked from LAB-MI/candilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
34 lines (34 loc) · 805 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
{
"extends": ["airbnb", "plugin:ava/recommended"],
"parser": "babel-eslint",
"plugins": ["ava"],
"env": {
"browser": true,
"node": true,
"mocha": true
},
"ecmaFeatures": {
"jsx": true,
"es6": true,
"classes": true
},
"rules": {
"no-console": 0,
"comma-dangle": [1, "always-multiline"],
"no-underscore-dangle": 0,
"max-len": [1, 180, 4],
"arrow-body-style": [0],
"react/jsx-no-bind": [0],
"import/no-unresolved": [0],
"consistent-return": 0,
"array-callback-return": 0,
"quote-props": 1,
"no-param-reassign": [1, { "props": true }],
"react/prop-types": [1],
"react/prefer-stateless-function": 0,
"react/jsx-indent": 0,
"prefer-template": 0,
"func-names": 1,
"react/no-did-mount-set-state": 0
}
}