UNPKG

775 BJSONView Raw
1{
2 "extends": "airbnb-base/legacy",
3 "rules": {
4 "comma-dangle": [2, "always-multiline"],
5 "prefer-const": 0,
6 "no-shadow": 0,
7 "no-param-reassign": 0,
8 "no-var": 0,
9 "vars-on-top": 0,
10 "padded-blocks": 0,
11 "space-before-function-paren": 0,
12 "func-names": 0,
13 "indent": 1,
14 "no-nested-ternary": 0,
15 "no-unneeded-ternary": 1,
16 "prefer-template": 0,
17 "max-len": 0,
18 "arrow-body-style": 1,
19 "new-cap": 1,
20 "no-underscore-dangle": 0,
21 "global-require": 0,
22 "object-shorthand": 0,
23 "no-undef": 1,
24 "prefer-arrow-callback": 0,
25 "no-loop-func": 0,
26 "no-inner-declarations": 0,
27 "no-restricted-syntax": 0,
28 "import/no-extraneous-dependencies": 0,
29 "import/no-unresolved": 0,
30 "guard-for-in": 0
31 }
32}