-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
40 lines (40 loc) · 1.25 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"rules": {
"quotemark": [true, "single"],
"import-spacing": false,
"no-conditional-assignment": false,
"curly": false,
"eofline": false,
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"object-literal-sort-keys": false,
"arrow-parens": false,
"typedef-whitespace": false,
"radix": false,
"forin": false,
"no-console": [true, "log"],
"max-classes-per-file": false,
"member-ordering": [true, {
"order": [
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"public-static-field",
"protected-static-field",
"private-static-field",
"constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method",
"public-static-method",
"protected-static-method",
"private-static-method"
]
}],
"member-access": [true, "check-accessor"]
},
"rulesDirectory": []
}