-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtslint.json
89 lines (89 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"rules": {
"ban-types": [
true,
[
"Object"
],
[
"Function"
]
],
"no-any": true,
"no-empty-interface": true,
"no-import-side-effect": true,
"no-internal-module": true,
"no-non-null-assertion": true,
"no-reference": true,
"no-unnecessary-type-assertion": true,
"no-var-requires": true,
"unified-signatures": true,
"ban": [
true,
[
"eval"
],
[
"it",
"only"
]
],
"curly": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-debugger": true,
"no-duplicate-super": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-inferred-empty-object-type": true,
"no-invalid-template-strings": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-shadowed-variable": true,
"no-object-literal-type-assertion": true,
"no-sparse-arrays": true,
"no-string-literal": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-unbound-method": [
true,
"ignore-static"
],
"no-unsafe-finally": true,
"no-unused-expression": [
true,
"allow-fast-null-checks"
],
"no-unused-variable": [
true,
{
"ignore-pattern": "^_"
}
],
"no-var-keyword": true,
"no-void-expression": true,
"prefer-object-spread": true,
"radix": true,
"restrict-plus-operands": true,
"strict-boolean-expressions": true,
"strict-type-predicates": true,
"triple-equals": true,
"typeof-compare": true,
"use-isnan": true,
"deprecation": true,
"eofline": true,
"indent": [
true,
"spaces",
2
],
"max-line-length": [
true,
120
],
"no-default-export": false,
"object-literal-sort-keys": false,
"prefer-const": true
}
}