-
Notifications
You must be signed in to change notification settings - Fork 19
/
tslint.json
45 lines (45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"rules": {
"array-type": [true, "array-simple"],
"class-name": true,
"comment-format": [true, "check-space"],
"curly": true,
"eofline": true,
"forin": true,
"indent": [true, "spaces"],
"interface-name": [true, "never-prefix"],
"jsdoc-format": true,
"label-position": true,
"new-parens": true,
"no-angle-bracket-type-assertion": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-debugger": true,
"no-namespace": [true, "allow-declarations"],
"no-reference": true,
"no-require-imports": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-use-before-declare": false,
"no-var-keyword": true,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"object-literal-shorthand": true,
"ordered-imports": [
true,
{
"named-imports-order": "lowercase-last"
}
],
"radix": true,
"semicolon": [true, "always", "ignore-interfaces"],
"switch-default": true,
"triple-equals": [true, "allow-null-check"],
"use-isnan": true,
"variable-name": [
true,
"check-format",
"ban-keywords",
"allow-leading-underscore"
]
}
}