-
Notifications
You must be signed in to change notification settings - Fork 43
/
tslint.json
86 lines (86 loc) · 1.93 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"object-literal-shorthand": false,
"forin": false,
"max-file-line-count": false,
"no-console": false,
"trailing-comma": false,
"triple-equals": false,
"eofline": false,
"interface-over-type-literal": false,
"space-before-function-paren": false,
"quotemark": [
true,
"double"
],
"indent": false,
"member-access": true,
"ordered-imports": [
false
],
"max-line-length": [true, 120],
"only-arrow-functions": false,
"member-ordering": [
true,
{
"order": [
"public-static-field",
"private-static-field",
"public-instance-field",
"private-instance-field",
"public-constructor",
"private-constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method",
"public-static-method",
"protected-static-method",
"private-static-method"
]
}
],
"curly": false,
"interface-name": [
false
],
"array-type": [
false
],
"no-empty-interface": false,
"no-empty": false,
"arrow-parens": false,
"ban-types": false,
"object-literal-sort-keys": false,
"no-unused-expression": false,
"max-classes-per-file": false,
"variable-name": [
false
],
"one-line": [
false,
"check-catch",
"check-finally",
"check-else",
"check-open-brace",
"check-whitespace"
],
"whitespace": false,
"no-trailing-whitespace": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"linebreak-style": false,
"object-literal-key-quotes": false,
"no-var-requires": false,
"one-variable-per-declaration": [
false
]
},
"rulesDirectory": []
}