-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
52 lines (49 loc) · 1.63 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
46
47
48
49
50
51
52
{
"rules": {
"no-internal-module": true,
"no-namespace": [true, "allow-declarations"],
"no-reference": true,
"no-var-requires": true,
"prefer-for-of": true,
"typedef": true,
"typedef-whitespace": true,
"curly": true,
"forin": true,
"no-arg": true,
"no-conditional-assignment": true,
"no-console": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-default-export": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-shadowed-variable": true,
"no-string-literal": true,
"no-string-throw": true,
"no-unused-expression": true,
"no-var-keyword": true,
"radix": true,
"switch-default": false,
"triple-equals": [true, "allow-null-check", "allow-undefined-check"],
"use-isnan": true,
"indent": [true, "spaces"],
"no-trailing-whitespace": true,
"trailing-comma": true,
"prefer-const": true,
"class-name": true,
"array-type": [true, "array"],
"arrow-return-shorthand": true,
"new-parens": true,
"no-angle-bracket-type-assertion": true,
"no-consecutive-blank-lines": true,
"no-unnecessary-initializer": true,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"variable-name": [true, "bak-keywords", "check-format", "allow-leading-underscore"],
"whitespace": true
}
}