-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
39 lines (39 loc) · 971 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
39
{
"extends": [
"airbnb-base"
],
"rules": {
"no-console": 0,
"no-underscore-dangle": 0,
"no-unused-vars": ["error", { "argsIgnorePattern": "next" }],
"no-use-before-define": ["error", { "variables": false }],
"import/no-extraneous-dependencies": ["error", { "devDependencies": ["**/*.spec.js", "**/*.integration.js"] }],
"no-multi-str": 0,
"max-len": "off",
"semi": "off",
"comma-dangle": "off",
"arrow-body-style": "off",
"arrow-parens": "off",
"consistent-return": "off",
"padded-blocks": "off",
"object-curly-newline": "off",
"class-methods-use-this": "off",
"no-await-in-loop": "off",
"no-continue": "off",
"no-param-reassign": ["error", {
"props": true,
"ignorePropertyModificationsFor": ["memo", "map"]
}]
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 9
},
"globals": {
"factory": true
}
}