-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
89 lines (89 loc) · 2.1 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
{
"extends": [
"tslint:latest",
"tslint-react"
],
"rules": {
"quotemark": [
true,
"single"
],
"no-shadowed-variable": true,
"no-string-literal": false,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": [
true,
"allow-fast-null-checks"
],
"no-use-before-declare": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"member-access": false,
"member-ordering": [
false,
{
"order": [
"protected-static-field",
"protected-static-method",
"public-static-field",
"public-static-method",
"private-static-field",
"private-static-method",
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"public-constructor",
"protected-constructor",
"private-constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"ordered-imports": false,
"trailing-comma": false,
"interface-name": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"no-duplicate-imports": false,
"no-empty-interface": false,
"no-empty": [
true,
"allow-empty-catch",
"allow-empty-functions"
],
"semicolon": [
true,
"never"
],
"no-invalid-template-strings": false,
"import-spacing": true,
"arrow-parens": false,
"ban-types": false,
"no-this-assignment": [
true,
{
"allowed-names": [
"^self$"
],
"allow-destructuring": true
}
],
"max-line-length": [
true,
140
],
"max-classes-per-file": false,
"object-literal-shorthand": false,
"no-console": false,
"no-object-literal-type-assertion": false,
"no-namespace": false,
"prefer-conditional-expression": false,
"no-var-requires": false,
"no-implicit-dependencies": false,
"no-submodule-imports": false
}
}