forked from Annotald/annotald
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslintrc
45 lines (45 loc) · 1.5 KB
/
tslintrc
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
{
"rules": {
"class-name": true,
"comment-format": ["check-space"],
"curly": true,
"eofline": true,
"forin": true,
"indent": [true, 4],
"jsdoc-format": true,
"label-undefined": true,
"max-line-length": [true, 85],
"no-arg": true,
"no-bitwise": true,
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-string-literal": true,
"no-switch-case-fallthrough" : true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"one-line": [true,
"check-catch","check-else","check-open-brace",
"check-whitespace"],
"quotemark": [true, "double"],
"radix": true,
"semicolon": true,
"triple-equals": true,
"typedef": [true, "callSignature","indexSignature",
"parameter","propertySignature", "memberVariableDeclarator"],
"typedef-whitespace": [true, {
"callSignature": "space",
"catchClause": "space",
"indexSignature": "space"
}],
"variable-name": true,
"whitespace": [true, "check-branch", "check-decl", "check-operator",
"check-separator", "check-type"]
}
}