-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path.eslintrc.json
More file actions
44 lines (39 loc) · 904 Bytes
/
.eslintrc.json
File metadata and controls
44 lines (39 loc) · 904 Bytes
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
{
"root": true,
"plugins": [
"jsdoc",
"mocha"
],
"env": {
"es6": true,
"node": true,
"es2020": true
},
"extends": [
"standard",
"eslint:recommended",
"plugin:promise/recommended",
"plugin:node/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:lodash/recommended",
"plugin:mocha/recommended",
"plugin:jsdoc/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"jsdoc/check-tag-names": 0,
"jsdoc/no-undefined-types": 0,
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 1 }],
"promise/no-callback-in-promise": 0,
"lodash/prefer-lodash-method": 0,
"lodash/prefer-noop": 0,
"lodash/prefer-constant": 0,
"node/no-unpublished-require": 0,
"mocha/no-mocha-arrows": 0,
"mocha/no-setup-in-describe": 0,
"mocha/no-skipped-tests": 0
}
}