forked from Mishkin2015/xapi-statements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
51 lines (51 loc) · 1.23 KB
/
tslint.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
{
"extends": [
"./node_modules/@ht2-labs/typescript-project/configs/tslint.json"
],
"rules": {
"linebreak-style": [
false,
"LF"
],
"ordered-imports": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"comment-format": [
true,
"check-space"
],
"readonly-keyword": false,
"max-file-line-count": [
true,
300
],
"no-magic-numbers": false,
"max-line-length": [
true,
120
],
"no-class": false,
"curly": false,
"strict-boolean-expressions": false,
"no-empty": false,
"await-promise": false,
"interface-over-type-literal": false,
"no-unused": false,
"deprecation": false,
"no-import-side-effect": false,
"cyclomatic-complexity": false,
"early-exit": false,
"no-let": false,
"no-inferrable-types": false,
"no-shadowed-variable": false,
"no-inferred-empty-object-type": false,
"no-object-literal-type-assertion": false,
"strict-type-predicates": false,
"arrow-parens": false,
"no-use-before-declare": false,
"no-unnecessary-type-assertion": false,
"type-literal-delimiter": false,
"no-empty-interface": false,
"no-boolean-literal-compare": false
}
}