-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtslint.json
34 lines (34 loc) · 848 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
{
"rules": {
"only-arrow-functions": [
true,
"allow-declarations",
"allow-named-functions"
],
"no-var-keyword": true,
"object-literal-key-quotes": [true, "as-needed"],
"prefer-for-of": true,
"semicolon": [true, "always"],
"arrow-parens": true,
"typedef-whitespace": [
true,
{
"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-trailing-whitespace": true,
"no-debugger": true,
"no-any": false
}
}