|
7 | 7 | "block-scoped-var": 2, |
8 | 8 | "brace-style": [2, "stroustrup"], |
9 | 9 | "camelcase": 2, |
10 | | - "comma-spacing": [2, {"before": false, "after": true}], |
| 10 | + "comma-dangle": 2, |
| 11 | + "comma-spacing": [2, { "before": false, "after": true }], |
11 | 12 | "comma-style": [2, "last"], |
| 13 | + "consistent-return": 2, |
12 | 14 | "consistent-this": [2, "self"], |
13 | 15 | "curly": 2, |
14 | 16 | "eol-last": 2, |
15 | 17 | "eqeqeq": 2, |
| 18 | + "func-names": 0, |
| 19 | + "func-style": [0, "expression"], |
| 20 | + "guard-for-in": 2, |
| 21 | + "handle-callback-err": 2, |
16 | 22 | "indent": [2, 2], |
17 | | - "key-spacing": [2, {"beforeColon": false, "afterColon": true}], |
| 23 | + "key-spacing": [2, { "beforeColon": false, "afterColon": true }], |
18 | 24 | "keyword-spacing": 2, |
19 | 25 | "new-cap": 2, |
| 26 | + "newline-after-var": [0, "always"], |
20 | 27 | "new-parens": 2, |
21 | 28 | "no-array-constructor": 2, |
22 | 29 | "no-bitwise": 2, |
| 30 | + "no-cond-assign": 2, |
23 | 31 | "no-constant-condition": 0, |
| 32 | + "no-control-regex": 2, |
| 33 | + "no-debugger": 2, |
| 34 | + "no-delete-var": 2, |
24 | 35 | "no-dupe-args": 2, |
| 36 | + "no-dupe-keys": 2, |
25 | 37 | "no-duplicate-case": 2, |
| 38 | + "no-else-return": 2, |
| 39 | + "no-empty": 2, |
| 40 | + "no-empty-character-class": 2, |
| 41 | + "no-eq-null": 2, |
26 | 42 | "no-eval": 2, |
27 | | - "no-extra-strict": 0, |
| 43 | + "no-ex-assign": 2, |
| 44 | + "no-extra-boolean-cast": 2, |
| 45 | + "no-extra-parens": 2, |
| 46 | + "no-extra-semi": 2, |
| 47 | + "no-fallthrough": 2, |
28 | 48 | "no-floating-decimal": 2, |
| 49 | + "no-func-assign": 2, |
| 50 | + "no-implicit-coercion": 2, |
29 | 51 | "no-implied-eval": 2, |
30 | 52 | "no-inline-comments": 0, |
| 53 | + "no-inner-declarations": 2, |
| 54 | + "no-invalid-regexp": 2, |
31 | 55 | "no-irregular-whitespace": 2, |
| 56 | + "no-lone-blocks": 2, |
| 57 | + "no-lonely-if": 2, |
| 58 | + "no-loop-func": 2, |
| 59 | + "no-mixed-requires": 2, |
32 | 60 | "no-mixed-spaces-and-tabs": 2, |
33 | | - "no-multiple-empty-lines": 0, |
| 61 | + "no-multiple-empty-lines": 2, |
34 | 62 | "no-multi-spaces": 2, |
| 63 | + "no-multi-str": 2, |
| 64 | + "no-negated-in-lhs": 2, |
35 | 65 | "no-new-object": 2, |
| 66 | + "no-obj-calls": 2, |
| 67 | + "no-octal": 2, |
36 | 68 | "no-param-reassign": 0, |
| 69 | + "no-path-concat": 2, |
37 | 70 | "no-process-env": 2, |
| 71 | + "no-redeclare": 2, |
| 72 | + "no-regex-spaces": 2, |
38 | 73 | "no-reserved-keys": 0, |
| 74 | + "no-return-assign": 2, |
39 | 75 | "no-self-compare": 2, |
| 76 | + "no-sequences": 2, |
40 | 77 | "no-spaced-func": 2, |
| 78 | + "no-sparse-arrays": 2, |
41 | 79 | "no-throw-literal": 2, |
42 | 80 | "no-trailing-spaces": 2, |
| 81 | + "no-undef": 2, |
43 | 82 | "no-underscore-dangle": 0, |
| 83 | + "no-unexpected-multiline": 2, |
| 84 | + "no-unreachable": 2, |
| 85 | + "no-unused-expressions": 2, |
| 86 | + "no-unused-vars": 2, |
| 87 | + "no-useless-call": 2, |
| 88 | + "no-useless-concat": 2, |
44 | 89 | "no-void": 2, |
45 | 90 | "object-curly-spacing": [2, "never"], |
46 | 91 | "one-var": [2, "never"], |
47 | 92 | "operator-assignment": [2, "always"], |
48 | 93 | "padded-blocks": 0, |
49 | | - "quotes": 0, |
| 94 | + "quote-props": [2, "as-needed"], |
| 95 | + "quotes": [2, "single"], |
50 | 96 | "radix": 2, |
51 | 97 | "semi": [2, "always"], |
52 | | - "semi-spacing": [2, {"before": false, "after": true}], |
| 98 | + "semi-spacing": [2, { "before": false, "after": true }], |
53 | 99 | "space-before-blocks": [2, "always"], |
54 | 100 | "spaced-comment": [2, "always"], |
55 | 101 | "space-in-parens": [2, "never"], |
56 | | - "space-unary-ops": [2, {"words": true, "nonwords": false}], |
| 102 | + "space-unary-ops": [2, { "words": true, "nonwords": false }], |
57 | 103 | "strict": [2, "global"], |
| 104 | + "use-isnan": 2, |
58 | 105 | "vars-on-top": 0, |
| 106 | + "valid-typeof": 2, |
59 | 107 | "wrap-iife": [2, "inside"], |
60 | 108 | "yoda": [2, "never"] |
61 | 109 | } |
|
0 commit comments