-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon-functionality.tslint.json
66 lines (66 loc) · 1.65 KB
/
common-functionality.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"rules": {
"await-promise": true,
"ban": false,
"curly": true,
"forin": true,
"import-blacklist": [
true,
"lodash"
],
"label-position": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-console": { "severity": "warning" },
"no-construct": true,
"no-debugger": true,
"no-duplicate-super": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-floating-promises": true,
"no-for-in-array": false,
"no-inferred-empty-object-type": true,
"no-invalid-template-strings": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-null-keyword": false,
"no-object-literal-type-assertion": true,
"no-shadowed-variable": true,
"no-sparse-arrays": true,
"no-string-literal": true,
"no-string-throw": true,
"no-submodule-imports": false,
"no-switch-case-fall-through": true,
"no-this-assignment": [
true,
{
"allow-destructuring": true
}
],
"no-unbound-method": false,
"no-unsafe-any": true,
"no-unsafe-finally": true,
"no-unused-expression": [
true,
"allow-fast-null-checks"
],
"no-use-before-declare": true,
"no-var-keyword": true,
"no-void-expression": true,
"prefer-conditional-expression": true,
"prefer-object-spread": true,
"radix": true,
"restrict-plus-operands": true,
"strict-boolean-expressions": false,
"strict-type-predicates": true,
"switch-default": true,
"triple-equals": [
true,
"allow-null-check"
],
"use-default-type-parameter": true,
"use-isnan": true
}
}