-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
37 lines (37 loc) · 712 Bytes
/
tslint.json
File metadata and controls
37 lines (37 loc) · 712 Bytes
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"array-type": false,
"trailing-comma": false,
"quotemark": [
true,
"single"
],
"no-console": false,
"no-string-literal": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"interface-over-type-literal": false,
"max-classes-per-file": [
true,
2
],
"interface-name": [
true,
"never-prefix"
],
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"curly": [
true,
"ignore-same-line"
],
"member-ordering": false,
"prefer-for-of": false
},
"rulesDirectory": []
}