-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtslint.json
41 lines (41 loc) · 1.02 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
{
"extends": "tslint:latest",
"rules": {
"indent": [true, "spaces", 2],
"interface-name": false,
"max-line-length": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"no-empty": false,
"quotemark": [
true,
"single",
"avoid-escape"
],
"typedef": [
true,
"call-signature",
"member-variable-declaration",
"parameter",
"property-declaration",
"member-variable-declaration"
],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"object-literal-shorthand": null,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"arrow-parens": null,
"no-this-assignment": null
},
"rulesDirectory": []
}