-
Notifications
You must be signed in to change notification settings - Fork 171
/
tslint.json
34 lines (34 loc) · 911 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
{
"extends": "tslint:latest",
"rules": {
"no-namespace": false,
"indent": [true, "spaces"],
"quotemark": [true, "double", "avoid-escape"],
"object-literal-sort-keys": false,
"class-name": true,
"semicolon": [true, "always"],
"triple-equals": [true, "allow-null-check"],
"eofline": true,
"jsdoc-format": true,
"member-access": true,
"whitespace": [true,
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"curly": true,
"max-line-length": [true, 200],
"cyclomatic-complexity": [true, 20],
"max-file-line-count": [true, 1000],
"ordered-imports": false,
"interface-over-type-literal": false,
"prefer-for-of": false,
"no-bitwise": false,
"no-string-literal": false,
"one-line": [false],
"space-before-function-paren": false,
"align": [false]
},
"rulesDirectory": []
}