-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
29 lines (29 loc) · 851 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-eslint-rules"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"object-literal-sort-keys": false,
"trailing-comma": false,
"no-trailing-whitespace": false,
"no-var-requires": false,
"ordered-imports": false,
"radix": false,
"no-debugger": true,
"object-curly-spacing": true,
"ter-indent": [true, 2],
"no-unused-expressions": [1, { "allowShortCircuit": true, "allowTernary": true }],
"comma-spacing": [1, { "before": false, "after": true }],
"semi": [1, "always"],
"no-multi-spaces": 1,
"block-spacing": 1,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"no-multiple-empty-lines": [1, { "max": 1 }],
"space-before-blocks" : [1, "always"]
},
"rulesDirectory": []
}