forked from TomBerriot/dev-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
31 lines (31 loc) · 787 Bytes
/
tslint.json
File metadata and controls
31 lines (31 loc) · 787 Bytes
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"linterOptions": {
"include": ["**/*.ts"]
},
"rules": {
"curly": [false],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "never",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
],
"quotemark": [false, "avoid-escape", "avoid-template", "jsx-double"],
"arrow-parens": [true, "ban-single-arg-parens"],
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": [true, "ignore-case"],
"no-console": false,
"no-shadowed-variable": false,
"max-classes-per-file": false
},
"rulesDirectory": []
}