-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
tslint.json
53 lines (53 loc) · 1015 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"rulesDirectory": "node_modules/tslint-microsoft-contrib",
"extends": [
"tslint-config-prettier"
],
"rules": {
"deprecation": true,
"class-name": true,
"curly": true,
"mocha-avoid-only": true,
"interface-name": true,
"jsdoc-format": true,
"max-line-length": [
false,
140
],
"prefer-const": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-shadowed-variable": false,
"no-empty": true,
"no-eval": true,
"no-switch-case-fall-through": true,
"no-unused-expression": true,
"no-var-keyword": true,
"no-var-requires": false,
"no-floating-promises": true,
"quotemark": [
false,
"double"
],
"space-before-function-paren": false,
"switch-default": false,
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "always"
}
],
"triple-equals": [
true,
"allow-null-check"
],
"use-isnan": true,
"variable-name": [
true,
"ban-keywords",
"allow-leading-underscore"
]
}
}