|
23 | 23 | "@typescript-eslint/no-this-alias": "warn", |
24 | 24 | "@typescript-eslint/no-use-before-define": "off", |
25 | 25 | "@typescript-eslint/no-var-requires": "off", |
26 | | - "array-bracket-spacing": ["error", "never"], |
27 | | - "arrow-spacing": ["error", { "before": true, "after": true }], |
28 | | - "brace-style": ["error", "1tbs", { "allowSingleLine": true }], |
29 | | - "comma-dangle": ["warn", "always-multiline"], |
30 | | - "comma-spacing": ["error", { "before": false, "after": true }], |
31 | | - "curly": ["error", "multi-line"], |
32 | | - "eol-last": "error", |
33 | 26 | "eqeqeq": ["warn", "always"], |
34 | | - "func-call-spacing": ["error", "never"], |
35 | 27 | "func-names": "off", |
36 | | - "indent": ["warn", 2, { "SwitchCase": 1, "MemberExpression": 1 }], |
37 | | - "key-spacing": ["error", { "beforeColon": false, "afterColon": true, "mode": "strict" }], |
38 | | - "keyword-spacing": ["error"], |
39 | | - "linebreak-style": ["error", "unix"], |
40 | 28 | "no-compare-neg-zero": "error", |
41 | 29 | "no-console": "warn", |
42 | 30 | "no-dupe-args": "error", |
43 | 31 | "no-dupe-keys": "error", |
44 | 32 | "no-duplicate-imports": "error", |
45 | 33 | "no-empty": ["warn", { "allowEmptyCatch": false }], |
46 | 34 | "no-extra-boolean-cast": "off", |
47 | | - "no-extra-semi": "error", |
48 | 35 | "no-fallthrough": "error", |
49 | 36 | "no-inner-declarations": "off", |
50 | | - "no-mixed-spaces-and-tabs": "error", |
51 | | - "no-multi-spaces": ["error", { "ignoreEOLComments": true }], |
52 | | - "no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1 }], |
53 | 37 | "no-octal": "error", |
54 | 38 | "no-path-concat": "off", |
55 | 39 | "no-process-env": "off", |
56 | 40 | "no-process-exit": "off", |
57 | 41 | "no-sync": "warn", |
58 | | - "no-trailing-spaces": ["warn", { "skipBlankLines": true, "ignoreComments": true }], |
59 | 42 | "no-undef": "error", |
60 | 43 | "no-unneeded-ternary": "error", |
61 | 44 | "no-unreachable": "error", |
62 | 45 | "@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none" }], |
63 | 46 | "no-useless-escape": "off", |
64 | 47 | "no-var": "error", |
65 | | - "object-curly-spacing": ["error", "always", { "objectsInObjects": true, "arraysInObjects": true }], |
66 | 48 | "prefer-const": "error", |
67 | 49 | "prefer-rest-params": "warn", |
68 | 50 | "prefer-spread": "warn", |
69 | 51 | "quote-props": ["error", "as-needed"], |
70 | | - "quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }], |
71 | 52 | "radix": "error", |
72 | 53 | "require-yield": "off", |
73 | | - "semi": ["error", "always"], |
74 | | - "space-before-blocks": ["error"], |
75 | | - "space-infix-ops": ["error"], |
76 | | - "spaced-comment": ["error", "always"], |
77 | | - "switch-colon-spacing": ["error", { "before": false, "after": true }], |
78 | | - "yield-star-spacing": ["error", { "before": true, "after": false }], |
79 | 54 | "import/no-internal-modules": [ |
80 | 55 | "error", |
81 | 56 | { |
|
0 commit comments