forked from si-lcmt/decaffeinate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
36 lines (36 loc) · 1.03 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
{
"rules": {
"array-type": [true, "generic"],
"no-unused-expression": true,
"curly": true,
"class-name": true,
"semicolon": [true, "always"],
"triple-equals": true,
"new-parens": true,
"ordered-imports": [true, {"import-sources-order": "case-insensitive", "named-imports-order": "lowercase-first"}],
"no-any": true,
"no-namespace": true,
"no-internal-module": true,
"no-var-keyword": true,
"prefer-for-of": true,
"quotemark": [true, "single", "avoid-escape"],
"typedef": [true, "call-signature", "parameter", "property-declaration"],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "space",
"index-signature": "space",
"parameter": "space",
"property-declaration": "space",
"variable-declaration": "space"
}
]
}
}