| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | { |
| 2 | "env": { | ||||
| 3 | "es6": true, | ||||
| 4 | "mocha": true | ||||
| 5 | }, | ||||
| 6 | |||||
| 7 | "parserOptions": { | ||||
| 8 | "sourceType": "module" | ||||
| 9 | }, | ||||
| 10 | |||||
| 11 | "extends": "standard", | ||||
| 12 | |||||
| 13 | "rules": { | ||||
| 14 | "semi": ["error", "always"], | ||||
| 15 | "no-multi-spaces": ["error", { "exceptions": { "VariableDeclarator": true, "ImportDeclaration": true } }], | ||||
| 16 | "promise/param-names": 0 | ||||
| 17 | } | ||||
| 18 | } | ||||