1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| {
| "env": {
| "es6": true,
| "mocha": true
| },
|
| "parserOptions": {
| "sourceType": "module"
| },
|
| "extends": "standard",
|
| "rules": {
| "semi": ["error", "always"],
| "no-multi-spaces": ["error", { "exceptions": { "VariableDeclarator": true, "ImportDeclaration": true } }],
| "promise/param-names": 0
| }
| }
|
|