-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtslint.json
49 lines (49 loc) · 1.16 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [
true,
"single"
],
"object-literal-sort-keys": false,
"interface-name": [
true,
"always-prefix"
],
"no-empty-interface": true,
"max-line-length": [
true,
120
],
"ordered-imports": false,
"member-access": true,
"no-magic-numbers": true,
"no-var-requires": true,
"no-arg": true,
"no-eval": true,
"indent": [
true,
"spaces",
4
],
"whitespace": [true, "check-module"],
"prefer-const": true,
"arrow-return-shorthand": true,
"class-name": true,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"trailing-comma": false,
"max-classes-per-file": false,
"interface-over-type-literal": false,
"type-literal-delimiter": true
},
"rulesDirectory": []
}