This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
executable file
·73 lines (73 loc) · 1.61 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
{
"extends": "tslint:recommended",
"rules": {
"align": [
true,
"parameters",
"statements"
],
"array-type": [true, "array"],
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"ban-types": [true],
"quotemark": [true, "single"],
"indent": [true, "spaces", 2],
"interface-name": [true, "never-prefix"],
"max-line-length": [true, 140],
"member-access": [
true,
"no-public",
"check-accessor",
"check-parameter-property"
],
"member-ordering": [
true,
{
"order": [
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"public-static-field",
"protected-static-field",
"private-static-field",
"constructor",
"public-static-method",
"protected-static-method",
"private-static-method",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"no-bitwise": false,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-unused-expressions": [
"error",
{
"allowTernary": true
}
],
"no-unused-variable": false,
"object-literal-key-quotes": ["consistent"],
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"import-sources-order": "any",
"named-imports-order": "case-insensitive",
"grouped-imports": true
}
],
"unified-signatures": false
}
}