-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
69 lines (69 loc) · 1.54 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
{
"extends": [
"tslint:latest",
"tslint-react"
],
"rules": {
"no-empty-interface": true,
"jsx-alignment": true,
"array-type": [true, "generic"],
"jsx-equals-spacing": [
true,
"never"
],
"no-submodule-imports": false,
"no-var-requires": false,
"no-implicit-dependencies": false,
"jsx-key": true,
"jsx-no-bind": true,
"jsx-no-lambda": true,
"jsx-boolean-value": false,
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-wrap-multiline": true,
"no-magic-numbers": false,
"no-reference": true,
"curly": true,
"await-promise": true,
"no-empty": true,
"no-floating-promises": false,
"no-invalid-this": true,
"no-null-keyword": false,
"no-var-keyword": true,
"triple-equals": true,
"typeof-compare": true,
"no-object-literal-type-assertion": false,
"max-classes-per-file": [
true,
1
],
"max-file-line-count": [
true,
200
],
"no-default-export": true,
"no-duplicate-imports": true,
"prefer-const": true,
"space-before-function-paren": false,
"only-arrow-functions": false,
"trailing-comma": [
true,
{
"multiline": {
"functions": "never"
},
"singleline": "never"
}
],
"semicolon": false,
"class-name": true,
"interface-name": [
true,
"never-prefix"
],
"space-within-parens": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-unused-expression": false
}
}