-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
39 lines (39 loc) · 1.09 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
{
"rules": {
"class-name": true,
"eofline": false,
"forin": true,
"indent": false,
"label-position": true,
"max-line-length": [true, 150],
"no-arg": true,
"no-bitwise": true,
"no-console": false,
"no-construct": true,
"no-constructor-vars": false,
"no-debugger": true,
"no-empty": true,
"no-eval": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": false,
"no-var-requires": false,
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],
"semicolon": false,
"triple-equals": [true, "allow-null-check"],
"typedef": [
true,
"callSignature",
"indexSignature",
"parameter",
"propertySignature",
"variableDeclarator",
"memberVariableDeclarator"
],
"use-strict": false,
"variable-name": [true, "allow-leading-underscore"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"]
}
}