-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
30 lines (30 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
30
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"jsRules": {
"no-unused-expression": true,
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"trailing-comma": [true, { "multiline": "always", "singleline": "any" }],
"arrow-parens": true
},
"rules": {
"quotemark": [true, "single"],
"member-access": [false],
"ordered-imports": [false],
"max-line-length": [true, 150],
"member-ordering": [false],
"interface-name": [false],
"arrow-parens": true,
"object-literal-sort-keys": false,
"trailing-comma": [true, { "multiline": "always", "singleline": "any" }],
"semicolon": [true, "always"]
},
"rulesDirectory": [],
"linterOptions": {
"exclude": ["bin", "lib/*generated.js", "node_modules/*", "**/*.json"]
}
}