|
16 | 16 | "no-alert": "warn", |
17 | 17 | "no-empty": [ "warn", { "allowEmptyCatch": true } ], |
18 | 18 | "no-eval": "error", |
19 | | - "@typescript-eslint/comma-dangle": [ "warn", "always-multiline" ], |
20 | | - "@typescript-eslint/member-delimiter-style": [ "warn", { "singleline": { "requireLast": true } } ], |
| 19 | + "comma-dangle": [ "warn", "always-multiline" ], |
| 20 | + "quotes": "warn", |
21 | 21 | "@typescript-eslint/no-confusing-void-expression": [ "warn", { "ignoreArrowShorthand": true } ], |
| 22 | + "@typescript-eslint/no-duplicate-type-constituents": "warn", |
22 | 23 | "@typescript-eslint/no-empty-function": "off", |
| 24 | + "@typescript-eslint/no-empty-object-type": "off", |
23 | 25 | "@typescript-eslint/no-misused-promises": [ "error", { "checksVoidReturn": false } ], |
24 | 26 | "@typescript-eslint/no-non-null-assertion": "warn", |
25 | 27 | "@typescript-eslint/no-redundant-type-constituents": "off", |
|
30 | 32 | "@typescript-eslint/no-unsafe-enum-comparison": "off", |
31 | 33 | "@typescript-eslint/no-unsafe-member-access": "off", |
32 | 34 | "@typescript-eslint/no-unsafe-return": "off", |
| 35 | + "@typescript-eslint/no-unused-expressions": [ "error", { "allowShortCircuit": true, "allowTernary": true } ], |
33 | 36 | "@typescript-eslint/no-unused-vars": [ "warn", { "argsIgnorePattern": "^_", "ignoreRestSiblings": true } ], |
34 | | - "@typescript-eslint/quotes": "warn", |
35 | 37 | "@typescript-eslint/return-await": "warn", |
36 | 38 | "@typescript-eslint/require-await": "off", |
37 | 39 | "@typescript-eslint/switch-exhaustiveness-check": "warn", |
|
0 commit comments