• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "extends": "google",
3    "plugins": ["html"],
4    "rules": {
5      "accessor-pairs": "off",
6      "array-bracket-spacing": "off",
7      "array-callback-return": "off",
8      "arrow-parens": "off",
9      "block-scoped-var": "off",
10      "brace-style": "off",
11      "camelcase": "off",
12      "comma-dangle": "off",
13      "comma-spacing": "off",
14      "curly": "off",
15      "default-case": "off",
16      "dot-location": "off",
17      "dot-notation": "off",
18      "eqeqeq": "off",
19      "generator-star-spacing": "off",
20      "guard-for-in": "off",
21      "handle-callback-err": "off",
22      "indent": "off",
23      "key-spacing": "off",
24      "keyword-spacing": "off",
25      "max-len": ["error", {
26        "ignorePattern": "((// @suppress longLineCheck)|:)$",
27        "ignoreUrls": true
28      }],
29      "max-nested-callbacks": "off",
30      "max-statements-per-line": "off",
31      "new-cap": "off",
32      "new-parens": "off",
33      "no-alert": "off",
34      "no-array-constructor": "off",
35      "no-cond-assign": "off",
36      "no-constant-condition": "off",
37      "no-control-regex": "off",
38      "no-dupe-keys": "off",
39      "no-else-return": "off",
40      "no-eq-null": "off",
41      "no-extra-bind": "off",
42      "no-extra-boolean-cast": "off",
43      "no-extra-semi": "error",
44      "no-floating-decimal": "off",
45      "no-func-assign": "off",
46      "no-implicit-coercion": "off",
47      "no-inner-declarations": "off",
48      "no-lonely-if": "off",
49      "no-loop-func": "off",
50      "no-multi-spaces": "off",
51      "no-multiple-empty-lines": "off",
52      "no-negated-condition": "off",
53      "no-new": "off",
54      "no-new-func": "off",
55      "no-new-object": "off",
56      "no-new-wrappers": "off",
57      "no-proto": "off",
58      "no-redeclare": "off",
59      "no-regex-spaces": "off",
60      "no-restricted-globals": "off",
61      "no-return-assign": "off",
62      "no-sequences": "off",
63      "no-spaced-func": "off",
64      "no-throw-literal": "off",
65      "no-undef": "off",
66      "no-undef-init": "off",
67      "no-unneeded-ternary": "off",
68      "no-unreachable": "error",
69      "no-unused-expressions": "off",
70      "no-unused-vars": "off",
71      "no-use-before-define": "off",
72      "no-useless-call": "off",
73      "no-useless-concat": "off",
74      "no-useless-escape": "off",
75      "no-warning-comments": "off",
76      "no-whitespace-before-property": "off",
77      "object-curly-spacing": "off",
78      "one-var": "off",
79      "one-var-declaration-per-line": "off",
80      "operator-assignment": "off",
81      "padded-blocks": "off",
82      "quote-props": "off",
83      "radix": "off",
84      "require-jsdoc": "off",
85      "semi": "off",
86      "semi-spacing": "off",
87      "space-unary-ops": "off",
88      "spaced-comment": "off",
89      "valid-jsdoc": "off",
90      "wrap-iife": "off",
91      "yoda": "off"
92    }
93}
94