-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
48 lines (48 loc) · 1.09 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [
true,
"single"
],
"one-line": [
true,
"check-open-brace",
"check-whitespace"
],
"object-literal-sort-keys": [
false
],
"no-string-literal": false,
"triple-equals": [
false
],
"only-arrow-function": false,
"max-classes-per-file": false,
"ordered-imports": false,
"no-console": [true, "log"],
"no-empty": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case", "allow-snake-case", "allow-trailing-underscore"],
"max-line-length": false,
"ban-types": false,
"no-namespace": false,
"no-empty-interface": false,
"naming-convention": [
"error",
{
"selector": "interface",
"format": ["PascalCase"],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
],
"array-type": false
},
"rulesDirectory": []
}