forked from CloudNativeJS/cloud-health-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (28 loc) · 854 Bytes
/
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
{
"$schema": "http://json.schemastore.org/tslint",
"linterOptions": {
"exclude": [
]
},
// See https://palantir.github.io/tslint/rules/
"rules": {
// These rules find errors related to TypeScript features.
"adjacent-overload-signatures": true,
"prefer-for-of": true,
"unified-signatures": true,
"no-any": true,
// These rules catch common errors in JS programming or otherwise
// confusing constructs that are prone to producing bugs.
"label-position": true,
"no-arg": true,
"no-construct": true,
"no-duplicate-variable": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-shadowed-variable": true,
"no-string-throw": true,
"no-unused-expression": true,
"no-var-keyword": true,
"triple-equals": [true, "allow-null-check", "allow-undefined-check"]
}
}