|
59 | 59 | "rules": { |
60 | 60 | "typescript/ban-ts-comment": "error", |
61 | 61 | "typescript/consistent-type-imports": "error", |
62 | | - "typescript/prefer-optional-chain": "error", |
63 | 62 | "typescript/no-unnecessary-type-assertion": "error", |
64 | 63 | "typescript/prefer-for-of": "error", |
65 | | - "typescript/no-floating-promises": ["error", { "ignoreVoid": false }], |
| 64 | + // "typescript/no-floating-promises": ["error", { "ignoreVoid": false }], |
66 | 65 | "typescript/no-dynamic-delete": "error", |
67 | | - "typescript/no-unsafe-member-access": "error", |
| 66 | + // "typescript/no-unsafe-member-access": "error", |
68 | 67 | "typescript/unbound-method": "error", |
69 | 68 | "typescript/no-explicit-any": "error", |
70 | | - "typescript/no-empty-function": "off" |
| 69 | + "typescript/no-empty-function": "off", |
| 70 | + |
| 71 | + // === FIXME: Rules to turn back as error === |
| 72 | + "typescript/prefer-optional-chain": "warn", |
| 73 | + "typescript/no-floating-promises": "warn", |
| 74 | + "typescript/no-unsafe-member-access": "warn", |
| 75 | + |
| 76 | + // === FIXME: Requires migrating TS to v6/v7 === |
| 77 | + "typescript/tsconfig-error": "off" |
71 | 78 | } |
72 | 79 | }, |
73 | 80 | { |
|
0 commit comments