-
Notifications
You must be signed in to change notification settings - Fork 240
/
tslint.json
29 lines (29 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single", "avoid-template"],
"one-line": [false],
"max-line-length": [true, {"limit": 160, "ignore-pattern": "^import |^export {(.*?)}"}],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"object-literal-sort-keys": [false],
"max-classes-per-file": [false, 1],
"no-console": [false, "log"],
"member-ordering": false,
"no-bitwise": false,
"no-empty": false,
"no-shadowed-variable": false,
"ordered-imports": false,
"no-string-literal": false,
"no-trailing-whitespace": [true, "ignore-comments", "ignore-blank-lines", "ignore-template-strings"],
"object-literal-shorthand": false,
"no-conditional-assignment": false,
"radix": false,
"no-var-requires": false,
"interface-name": false
},
"rulesDirectory": []
}