-
Notifications
You must be signed in to change notification settings - Fork 66
/
tslint.json
66 lines (66 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"rules": {
"no-bitwise:": false,
"one-line:": false,
"semicolon:": false,
"typedef-whitespace:": false,
"no-shadowed-variable:": false,
"max-line-length:": false,
"forin:": false,
"no-console": true,
"no-construct": true,
"no-duplicate-super": true,
"adjacent-overload-signatures": true,
"no-import-side-effect": true,
"no-internal-module": true,
"no-namespace": true,
"no-non-null-assertion": true,
"no-reference": true,
"no-var-requires": true,
"prefer-for-of": true,
"typedef": false,
"typedef-whitespace": false,
"no-arg": true,
"no-conditional-assignment": false,
"no-debugger": true,
"no-invalid-template-strings": true,
"no-invalid-this": false,
"no-misused-new": true,
"no-object-literal-type-assertion": false,
"no-sparse-arrays": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-unsafe-finally": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"radix": true,
"restrict-plus-operands": true,
"triple-equals": true,
"typeof-compare": true,
"use-isnan": true,
"deprecation": true,
"eofline": true,
"indent": [ true, "spaces" ],
"max-file-line-count": [ true, 1000 ],
"max-line-length": [ true, 350 ],
"no-require-imports": true,
"no-mergeable-namespace": true,
"prefer-const": true,
"array-type": [ true, "array" ],
"arrow-return-shorthand": true,
"callable-types": true,
"class-name": true,
"new-parens": true,
"no-angle-bracket-type-assertion": true,
"no-consecutive-blank-lines": [ true, 3 ],
"no-reference-import": true,
"no-unnecessary-callback-wrapper": true,
"object-literal-shorthand": true,
"one-variable-per-declaration": true,
"quotemark": [ true, "single" ],
"return-undefined": true,
"space-before-function-paren": [true, "never"],
"whitespace": [ true, "check-decl", "check-operator", "check-module", "check-separator", "check-typecast", "check-preblock" ]
}
}