OLD | NEW |
1 { | 1 { |
2 "extends": "google", | 2 "extends": "google", |
3 "plugins": ["html"], | 3 "plugins": ["html"], |
4 "rules": { | 4 "rules": { |
5 "accessor-pairs": "off", | 5 "accessor-pairs": "off", |
6 "array-bracket-spacing": "off", | 6 "array-bracket-spacing": "off", |
7 "array-callback-return": "off", | 7 "array-callback-return": "off", |
8 "arrow-parens": "off", | 8 "arrow-parens": "off", |
9 "block-scoped-var": "off", | 9 "block-scoped-var": "off", |
10 "brace-style": "off", | 10 "brace-style": "off", |
11 "camelcase": "off", | 11 "camelcase": "off", |
12 "catapult-camelcase": ["error", { | 12 "catapult-camelcase": ["error", { |
13 "properties": "never" | 13 "properties": "never" |
14 }], | 14 }], |
15 "comma-dangle": "off", | 15 "comma-dangle": "off", |
16 "comma-spacing": "off", | 16 "comma-spacing": "off", |
17 "curly": "off", | 17 "curly": "off", |
18 "default-case": "off", | 18 "default-case": "off", |
19 "dot-location": "off", | 19 "dot-location": "off", |
20 "dot-notation": "off", | 20 "dot-notation": "off", |
21 "eqeqeq": "off", | 21 "eqeqeq": "error", |
22 "generator-star-spacing": "off", | 22 "generator-star-spacing": "off", |
23 "guard-for-in": "off", | 23 "guard-for-in": "off", |
24 "handle-callback-err": "off", | 24 "handle-callback-err": "off", |
25 "indent": "off", | 25 "indent": "off", |
26 "key-spacing": "off", | 26 "key-spacing": "off", |
27 "keyword-spacing": "off", | 27 "keyword-spacing": "off", |
28 "max-len": ["error", { | 28 "max-len": ["error", { |
29 "ignorePattern": "((// @suppress longLineCheck)|:)$", | 29 "ignorePattern": "((// @suppress longLineCheck)|:)$", |
30 "ignoreUrls": true | 30 "ignoreUrls": true |
31 }], | 31 }], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "require-jsdoc": "off", | 87 "require-jsdoc": "off", |
88 "semi": "off", | 88 "semi": "off", |
89 "semi-spacing": "off", | 89 "semi-spacing": "off", |
90 "space-unary-ops": "off", | 90 "space-unary-ops": "off", |
91 "spaced-comment": "off", | 91 "spaced-comment": "off", |
92 "valid-jsdoc": "off", | 92 "valid-jsdoc": "off", |
93 "wrap-iife": "off", | 93 "wrap-iife": "off", |
94 "yoda": "off" | 94 "yoda": "off" |
95 } | 95 } |
96 } | 96 } |
OLD | NEW |