-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
32 lines (32 loc) · 995 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
30
31
32
{
"defaultSeverity": "error",
"extends": [
// https://github.com/palantir/tslint/blob/master/src/configs/recommended.ts
"tslint:recommended"
],
"jsRules": {},
// https://palantir.github.io/tslint/rules/
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-ordering": false,
"no-console": false,
"no-shadowed-variable": false,
"object-literal-sort-keys": false,
"ordered-imports": true,
"prefer-for-of": false,
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never",
"esSpecCompliant": true
}
]
},
"rulesDirectory": []
}