-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
39 lines (39 loc) · 1.17 KB
/
Copy pathtslint.json
File metadata and controls
39 lines (39 loc) · 1.17 KB
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"member-ordering": [
true,
{
"order": [
"public-static-field",
"private-static-field",
"private-instance-field",
"protected-instance-field",
"public-instance-field",
"public-constructor",
"protected-constructor",
"private-constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method",
"public-static-method",
"private-static-method"
]
}
],
"prefer-const": false,
"curly": [true, "ignore-same-line"],
"no-console": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"radix": false,
"trailing-comma": false,
"no-bitwise": false,
"indent": [true, "spaces", 4],
"object-literal-sort-keys": false
},
"rulesDirectory": []
}