-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
40 lines (40 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
40
{
"extends": "tslint:recommended",
"enable": true,
"jsEnable": true,
"rules": {
"max-line-length": [true, 120],
"indent": [true, "indent", 4],
"interface-name": [true, "never-prefix"],
"jsdoc-format": false,
"no-consecutive-blank-lines": false,
"no-console": [false],
"no-duplicate-variable": true,
"semicolon": ["never"],
"triple-equals": [true, "allow-null-check"],
"comment-format": [true, "check-space"],
"no-trailing-whitespace": true,
"align": [false],
"eofline": false,
"max-classes-per-file": [true, 5],
"quotemark": [true, "single", "avoid-escape"],
"object-literal-sort-keys":false,
"ordered-imports": ["any"]
},
"jsRules": {
"max-line-length": [true, 120],
"indent": [true, "indent", 4],
"comment-format": [true, "check-space"],
"no-console": [false],
"no-duplicate-variable": true,
"semicolon": ["never"],
"triple-equals": [true, "allow-null-check"],
"jsdoc-format": false,
"no-trailing-whitespace": true,
"align": [false],
"eofline": false,
"max-classes-per-file": [true, 5],
"quotemark": [true, "single", "avoid-escape"],
"object-literal-sort-keys":false
}
}