1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| {
| "extends": "./tslint.json",
| // disable all type checking rules so the vscode plugin can run
| "rules": {
| "await-promise": false,
| "deprecation": false,
| "match-default-export-name": false,
| "no-boolean-literal-compare": false,
| "no-floating-promises": false,
| "no-for-in-array": false,
| "no-inferred-empty-object-type": false,
| "no-unnecessary-type-assertion": false,
| "no-unsafe-any": false,
| "prefer-readonly": false,
| "promise-function-async": false,
| "restrict-plus-operands": false,
| "return-undefined": false,
| "strict-boolean-expressions": false,
| "use-default-type-parameter": false
| }
| }
|
|