-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtslint.json
44 lines (44 loc) · 1.31 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
{
"rules": {
"align": [true, "parameters", "statements"],
"ban": [true, "object", "function"],
"class-name": true,
"comment-format": [true, "check-space"],
"curly": true,
"forin": true,
"indent": [true, "spaces"],
"interface-name": true,
"jsdoc-format": true,
"label-position": true,
"max-line-length": [true, 140],
"member-ordering": [true, "static-before-instance", "variables-before-function"],
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-console": [true, "log", "error", "warn"],
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-shadowed-variable": true,
"no-eval": true,
"no-inferrable-types": true,
"no-internal-module": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": [true, "check-parameters"],
"no-var-requires": true,
"one-line": [true, "check-open-brace", "check-whitespace"],
"quotemark": [true, "single", "avoid-escape"],
"semicolon": true,
"switch-default": true,
"triple-equals": true,
"whitespace": [true,
"check-branch",
"check-decl",
"check-module",
"check-separator",
"check-type",
"check-typecast"]
}
}