-
Notifications
You must be signed in to change notification settings - Fork 9
/
tslint.json
44 lines (44 loc) · 1.13 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"linterOptions": {
"exclude": ["**/*.d.ts", "src/migration/*"]
},
"nodePath": "./node_modules",
"rules": {
"align": [true, "parameters", "statements"],
"arrow-parens": [true, "ban-single-arg-parens"],
"eofline": true,
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": [
true,
{ "limit": 120, "ignore-pattern": "^import |^export {(.*?)}" }
],
"no-any": false,
"no-consecutive-blank-lines": true,
"no-var-requires": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": false,
"ordered-imports": false,
"object-literal-key-quotes": [true, "as-needed"],
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"typedef": [
true,
"array-destructuring",
"call-signature",
"member-variable-declaration",
"parameter",
"property-declaration"
]
},
"rulesDirectory": []
}