-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
34 lines (34 loc) · 894 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
module.exports = {
"extends": "airbnb-base",
"plugins": [],
"rules": {
"func-names": "off",
"max-len": "off",
// doesn't work in node v4 :(
"strict": "off",
"prefer-rest-params": "off",
"react/require-extension": "off",
"import/no-extraneous-dependencies": "off",
"prefer-promise-reject-errors": 1,
"comma-dangle": "off",
"no-unused-expressions": "off",
"no-underscore-dangle": 1,
"function-paren-newline": "off",
"class-methods-use-this": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"no-prototype-builtins": "off",
"prefer-destructuring": "off",
"no-await-in-loop": "off",
"no-plusplus": "off",
"newline-per-chained-call": "off",
"no-continue": "off"
},
"env": {
"mocha": true
},
"settings": {
"import/resolver": "webpack"
}
};