-
-
Notifications
You must be signed in to change notification settings - Fork 249
/
tslint.json
53 lines (52 loc) · 1.14 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {
"no-unused-expression": false
},
"rules": {
"quotemark": [true, "single"],
"member-access": [false],
"ordered-imports": [false],
"max-line-length": [true, 150],
"member-ordering": [false],
"interface-name": [false],
"arrow-parens": false,
"object-literal-sort-keys": false,
"indent": false,
"trailing-comma": false,
"semicolon": false,
"no-console": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-empty": false,
"variable-name": [true, "allow-leading-underscore"],
"object-literal-key-quotes": false,
"no-bitwise": false,
"no-var-requires": false,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"triple-equals": [true, "allow-null-check"],
"use-strict": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"no-unused-expression": false,
"max-classes-per-file": true,
"no-trailing-whitespace": true
},
"rulesDirectory": [],
"lintOptions": {
"typeCheck": true
}
}