-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (38 loc) · 980 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": "airbnb-base",
"env": {
"node": true,
"es6": true
},
"globals": {},
"parserOptions": {},
"rules": {
"arrow-parens": ["error", "as-needed"],
"arrow-body-style": "off",
"comma-dangle": ["error", "never"],
"consistent-return": "off",
"default-case": "off",
"func-names": "off",
"generator-star-spacing": ["error", { "before": true, "after": true }],
"no-confusing-arrow": "off",
"no-continue": "off",
"no-param-reassign": "off",
"no-path-concat": "off",
"no-plusplus": "off",
"no-restricted-properties": "off",
"no-restricted-syntax": [
"warn",
"ForInStatement",
"LabeledStatement",
"WithStatement",
],
"no-return-assign": "off",
"no-shadow": "off",
"no-underscore-dangle": "off",
"one-var": "off",
"prefer-template": "off",
"space-before-function-paren": ["error", "never"],
"strict": "off",
"import/no-dynamic-require": "off"
}
}