-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
tslint.json
49 lines (49 loc) · 1.24 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
{
"extends": "tslint:recommended",
"rules": {
"callable-types": false,
"comment-format": false,
"forin": false,
"indent": [true, "tabs", 4],
"max-line-length": {
"options": [200]
},
"array-type": [true, "array"],
"member-ordering": [
true,
{
"order": [
"public-instance-field",
"public-static-field",
"protected-instance-field",
"protected-static-field",
"private-instance-field",
"private-static-field",
"constructor",
"public-instance-method",
"public-static-method",
"protected-instance-method",
"protected-static-method",
"private-instance-method",
"private-static-method"
]
}
],
"new-parens": false,
"no-arg": true,
"no-bitwise": false,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-console": {
"severity": "warning",
"options": ["debug", "info", "log", "time", "timeEnd", "trace"]
},
"no-empty": [true, "allow-empty-functions"],
"no-var-requires": false,
"object-literal-shorthand": [true, "never"],
"object-literal-sort-keys": false,
"one-line": [true, "check-catch", "check-finally", "check-else"],
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"]
}
}