-
Notifications
You must be signed in to change notification settings - Fork 38
/
.eslintrc
48 lines (48 loc) · 1.34 KB
/
.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
40
41
42
43
44
45
46
47
48
{
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:import/recommended"
],
"plugins": ["prettier"],
"globals": {
"expectAsync": true
},
"env": {
"node": true,
"es6": true
},
"rules": {
"max-len": ["error", 120],
"valid-jsdoc": ["error", { "requireReturn": false }],
"consistent-return": 0,
"no-unused-expressions": "off",
"class-methods-use-this": "off",
"no-unused-vars": "off",
"global-require": "off",
"no-shadow": "off",
"no-param-reassign": "off",
"no-nested-ternary": "off",
"no-undef": "off",
"no-useless-escape": "off",
"no-plusplus": "off",
"block-scoped-var": "off",
"vars-on-top": "off",
"no-redeclare": "off",
"prefer-destructuring": "off",
"no-prototype-builtins": "off",
"no-var": "off",
"no-multi-assign": "off",
"prefer-spread": "off",
"no-use-before-define": "off",
"no-bitwise": "off",
"no-cond-assign": "off",
"default-case": "off",
"no-void": "off",
"implicit-arrow-linebreak": "off",
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"import/no-dynamic-require": "off",
"camelcase": "off"
}
}