-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 647 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 647 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
{
"defaultSeverity": "error",
"extends": [
"@cartant/tslint-config",
"@cartant/tslint-config-etc",
"@cartant/tslint-config-rxjs"
],
"rules": {
"no-unused-declaration": {
"options": [{
"declarations": false,
"imports": true
}],
"severity": "error"
},
"typedef": {
"options": [
"parameter",
"property-declaration"
],
"severity": "error"
},
"rxjs-no-compat": { "severity": "off" },
"rxjs-no-create": { "severity": "off" },
"rxjs-no-ignored-subscription": { "severity": "off" },
"rxjs-no-unsafe-scope": { "severity": "off" }
}
}