-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
29 lines (29 loc) · 850 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"no-console": [false],
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"trailing-comma": [false],
"object-literal-key-quotes": [true, "as-need"],
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"indent": [true, "tabs", 4],
"semicolon": [true, "always", "ignore-bound-class-methods"]
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"src/generated/**"
]
}
}