-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtslint.json
51 lines (51 loc) · 1.01 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [
true,
"single",
"jsx-single",
"avoid-template",
"avoid-escape"
],
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"no-console": false,
"no-unused-variable": [
true,
{
"ignore-pattern": "^_"
}
],
"semicolon": [
true,
"never"
],
"interface-name": [
true,
"never-prefix"
],
"member-access": [
true,
"no-public"
],
"curly": [
true,
"ignore-same-line"
],
"arrow-parens": [
true,
"ban-single-arg-parens"
]
},
"rulesDirectory": []
}