UNPKG

847 BJSONView Raw
1{
2 "env": {
3 "commonjs": true,
4 "es6": true,
5 "node": true,
6 "mocha": true
7 },
8 "extends": [
9 "airbnb-base"
10 ],
11 "globals": {
12 "Atomics": "readonly",
13 "SharedArrayBuffer": "readonly"
14 },
15 "parserOptions": {
16 "ecmaVersion": 2017
17 },
18 "rules": {
19 "no-plusplus": "off",
20 "no-continue": "off",
21 "no-param-reassign": "off",
22 "no-empty": "off",
23 "no-throw-literal": "off",
24 "no-restricted-globals": "off",
25 "no-underscore-dangle": "off",
26 "radix": "off",
27 "no-prototype-builtins": "off",
28 "class-methods-use-this": "off",
29 "max-len": [
30 "error",
31 120
32 ],
33 "array-callback-return": "off",
34 "default-case": "off",
35 "comma-dangle": "off"
36 }
37}