-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtslint.json
More file actions
33 lines (33 loc) · 832 Bytes
/
tslint.json
File metadata and controls
33 lines (33 loc) · 832 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
32
33
{
"extends": "tslint-eslint-rules",
"rules": {
"block-spacing": [true, "always"],
"brace-style": [true, "1tbs"],
"curly": [true, "ignore-same-line"],
"handle-callback-err": true,
"import-blacklist": [true, "lodash"],
"indent": [true, "spaces"],
"interface-name": [false],
"no-consecutive-blank-lines": [true],
"no-console": [false],
"no-constant-condition": false,
"no-floating-promises": [true, "Bluebird"],
"no-irregular-whitespace": true,
"no-multi-spaces": true,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": [false],
"ter-indent": ["error", 2],
"ban": [
true,
{
"name": "fit",
"message": "don't focus tests"
}
]
},
"jsRules": {
"curly": true
},
"rulesDirectory": []
}