-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
46 lines (46 loc) · 1.09 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
{
"extends": [
"tslint:all"
],
"rules": {
"typedef": false,
"no-any": false,
"comment-format": [
true,
"check-space"
],
"member-ordering": false,
"triple-equals": [
true,
"allow-null-check"
],
"member-access": [
false
],
"interface-name": [
true,
"never-prefix"
],
"no-magic-numbers": [
true,
0,
-1,
1,
200
],
"completed-docs": false,
"no-unsafe-any": false,
"strict-boolean-expressions": false,
"no-inferred-empty-object-type": false,
"no-use-before-declare": false,
"no-void-expression": [
true,
"ignore-arrow-function-shorthand"
],
"no-namespace": false,
"curly": false,
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case"],
"object-literal-sort-keys": false,
"newline-per-chained-call": false
}
}