-
Notifications
You must be signed in to change notification settings - Fork 4
/
tslint.json
32 lines (32 loc) · 1.2 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
{
"rules": {
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"class-name": true,
"comment-format": [true, "check-space"],
"jsdoc-format": true,
"no-consecutive-blank-lines": true,
"one-line": [true, "check-catch", "check-else", "check-finally", "check-open-brace", "check-whitespace"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-typecast"],
"indent": [true, "spaces"],
"eofline": true,
"linebreak-style": [true, "LF"],
"no-default-export": true,
"no-require-imports": true,
"no-trailing-whitespace": true,
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"forin": true,
"no-conditional-assignment": true,
"no-console": [true, "log", "error"],
"no-construct": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-unreachable": true,
"no-unused-expression": true,
"switch-default": true,
"triple-equals": [true, "allow-null-check", "allow-undefined-check"]
}
}