forked from korydondzila/React-TypeScript-D3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 730 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 730 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
{
"extends": "tslint-eslint-rules",
"rules": {
"block-spacing": [true, "always"],
"brace-style": [true, "1tbs"],
"curly": true,
"handle-callback-err": true,
"indent": [true, "spaces", 2],
"interface-name": [false],
"ordered-imports": [false],
"object-literal-sort-keys": [false],
"no-consecutive-blank-lines": true,
"no-console": [false],
"no-constant-condition": true,
"no-switch-case-fallthrough": true,
"no-irregular-whitespace": true,
"no-multi-spaces": true,
"no-unused-variable": [true, "react"],
"no-var-requires": false,
"semicolon": [true, "always"],
"switch-default": true
},
"jsRules": {
"curly": true
},
"rulesDirectory": [
]
}