UNPKG

459 BJSONView Raw
1{
2 "root": true,
3 "extends": ["eslint:recommended", "google"],
4 "env": {
5 "node": true,
6 "mocha": true,
7 "es6": true
8 },
9 "rules": {
10 "object-curly-spacing": "off",
11 "max-len": "off",
12 "no-console": "off",
13 "quotes": ["error", "double"],
14 "arrow-parens": "off",
15 "indent": ["error", 4]
16 },
17 "parserOptions": {
18 "ecmaVersion": 8,
19 "sourceType": "module"
20 }
21}