|
69 | 69 | "typescript/consistent-indexed-object-style": "allow", |
70 | 70 | "typescript/no-explicit-any": "allow", |
71 | 71 | "typescript/no-unnecessary-boolean-literal-compare": "allow", |
| 72 | + "typescript/no-unsafe-member-access": "allow", |
| 73 | + "typescript/no-unsafe-type-assertion": "allow", |
| 74 | + "typescript/no-unsafe-call": "allow", |
| 75 | + "typescript/no-unsafe-argument": "allow", |
| 76 | + "typescript/no-misused-promises": "allow", |
| 77 | + "typescript/promise-function-async": "allow", |
| 78 | + "typescript/no-floating-promises": "allow", |
| 79 | + "typescript/no-unsafe-assignment": "allow", |
| 80 | + "typescript/require-await": "allow", |
| 81 | + "typescript/no-unsafe-return": "allow", |
| 82 | + "typescript/no-confusing-void-expression": "allow", |
| 83 | + "typescript/prefer-promise-reject-errors": "allow", |
| 84 | + "typescript/use-unknown-in-catch-callback-variable": "allow", |
| 85 | + "typescript/non-nullable-type-assertion-style": "allow", |
| 86 | + "typescript/unbound-method": "allow", |
| 87 | + "typescript/restrict-template-expressions": "allow", |
72 | 88 |
|
73 | 89 | // jsdoc |
74 | 90 | "jsdoc/require-returns": "allow", |
|
0 commit comments