-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
42 lines (42 loc) · 855 Bytes
/
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-empty": false,
"no-var-requires": false,
"arrow-parens": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-access": false,
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"static-method",
"instance-method"
],
"alphabetize": true
}
],
"no-console": false,
"no-unused-expression": false,
"no-unused-variable": true,
"no-string-literal": false,
"no-for-in-array": false,
"forin": false,
"quotemark": false,
"semicolon": true,
"object-literal-sort-keys": false,
"indent": [
true,
"spaces",
2
]
},
"rulesDirectory": []
}