-
Notifications
You must be signed in to change notification settings - Fork 7
/
tslint.json
39 lines (39 loc) · 1.18 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
{
"extends": "tslint:recommended",
"rules": {
"array-type": [true, "array-simple"],
"class-name": true,
"comment-format": [true, "check-space"],
"indent": [ true, "tabs" ],
"prefer-for-of": false,
"align": false,
"typedef-whitespace": false,
"interface-name": false,
"triple-equals": false,
"whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread", "check-type", "check-typecast", "check-preblock", "check-postbrace" ],
"space-within-parens": [ true, 0 ],
"max-line-length": false,
"eofline": true,
"no-empty": false,
"one-variable-per-declaration": true,
"curly": [ true ],
"member-ordering": false,
"no-magic-numbers": false,
"ban-comma-operator": true,
"max-classes-per-file": false,
"no-string-literal": true,
"no-bitwise": false,
"no-console": [ true, "log" ],
"no-construct": true,
"new-parens": false,
"quotemark": [ true, "double", "avoid-escape" ],
"semicolon": [ true, "always" ],
"only-arrow-functions": false,
"trailing-comma": [ true, {
"multiline": "never",
"singleline": "never"
} ],
"object-literal-sort-keys": false,
"ordered-imports": false
}
}