-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
32 lines (32 loc) · 808 Bytes
/
tslint.json
File metadata and controls
32 lines (32 loc) · 808 Bytes
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
{
"defaultSeverity": "error",
"extends": [
"tslint:all",
"tslint-immutable/all",
"tslint-config-prettier"
],
"rules": {
"completed-docs": false,
"file-name-casing": false,
"interface-name": [true, "never-prefix"],
"no-class": false,
"no-delete": true,
"no-expression-statement": false,
"no-if-statement": false,
"no-let": true,
"no-loop-statement": true,
"no-method-signature": false,
"no-mixed-interface": true,
"no-object-mutation": false,
"no-parameter-reassignment": true,
"no-this": false,
"no-unsafe-any": false,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"prefer-method-signature": false,
"readonly-array": true,
"readonly-keyword": [true, "ignore-class"],
"strict-boolean-expressions": false,
"strict-type-predicates": false
}
}