-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
96 lines (96 loc) · 3.19 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"extends": "tslint:recommended",
"rules": {
"adjacent-overload-signatures": true,
"ban-types": [
["Object", "Avoid using the `Object` type. Did you mean `object`?"],
["Boolean", "Avoid using the `Boolean` type. Did you mean `boolean`?"],
["Number", "Avoid using the `Number` type. Did you mean `number`?"],
["String", "Avoid using the `String` type. Did you mean `string`?"],
["Symbol", "Avoid using the `Symbol` type. Did you mean `symbol`?"]
],
"class-name": false,
"comment-format": [
true,
"check-space",
"check-lowercase",
{ "ignore-words": ["FIXME", "TODO", "XXX"] }
],
"curly": true,
"eofline": false,
"forin": false,
"indent": [true, 4],
"interface-name": false,
"interface-over-type-literal": false,
"jsdoc-format": true,
"label-position": true,
"max-classes-per-file": false,
"max-line-length": [true, 100],
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-namespace": false,
"no-shadowed-variable": false,
"no-string-literal": true,
"no-trailing-whitespace": true,
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-var-requires": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"module-source-path": "full",
"named-imports-order": "case-insensitive",
"grouped-imports": true
}
],
"prefer-for-of": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"radix": false,
"semicolon": [true, "always"],
"space-before-function-paren": [
true,
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
],
"strict-type-predicates": false,
"trailing-comma": false,
"triple-equals": [true, "allow-null-check"],
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration",
"member-variable-declaration"
],
"variable-name": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-preblock",
"check-rest-spread",
"check-separator",
"check-type",
"check-type-operator"
]
},
"jsRules": {
"max-line-length": [true, 100]
}
}