forked from phodal/growth-ionic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"extends": "tslint:latest",
"rules": {
"interface-name": false,
"max-line-length": false,
"member-ordering": [true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"object-literal-sort-keys": false,
"whitespace": false,
"member-access": false,
"no-empty": false,
"no-unused-variable": false,
"one-variable-per-declaration": false,
"typedef-whitespace":
[
false,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
],
"no-string-literal": false,
"trailing-comma": [false, {"multiline": "always", "singleline": "never"}]
}
}