-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
46 lines (45 loc) · 1.19 KB
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"extends": [
"tslint-microsoft-contrib",
"tslint-immutable/all"
],
"rules": {
"trailing-comma": [true, {
"multiline": "always",
"singleline": "never"
}],
"readonly-array": false,
"no-method-signature": false,
"no-if-statement": false,
"typedef": false,
"no-mixed-interface": false,
"no-expression-statement": false,
"no-object-mutation": false,
"interface-name": false,
"newline-before-return": false,
"prefer-type-cast": false,
"no-angle-bracket-type-assertion": true,
"import-name": false,
"no-relative-imports": false,
"no-cookies": false,
"await-promise": false,
"match-default-export-name": false,
"no-floating-promises": false,
"no-for-in-array": false,
"no-unsafe-any": false,
"no-use-before-declare": false,
"promise-function-async": false,
"restrict-plus-operands": false,
"strict-boolean-expressions": false,
"completed-docs": false,
"no-unnecessary-qualifier": false,
"no-unnecessary-type-assertion": false,
"no-void-expression": false,
"use-default-type-parameter": false
},
"linterOptions": {
"exclude": [
"node_modules/**/*.ts"
]
}
}