-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
34 lines (33 loc) · 728 Bytes
/
Copy pathtslint.json
File metadata and controls
34 lines (33 loc) · 728 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
34
{
"extends": ["tslint:recommended", "tslint-react"],
"rules": {
"indent": [
true,
"tabs"
],
"object-literal-sort-keys": false,
"trailing-comma": false,
"no-trailing-whitespace": false,
"no-string-literal": false,
"triple-equals": false,
"whitespace": [
true,
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type"
],
"max-line-length": false,
"eofline": false,
"curly": false,
"one-line": false,
"switch-default": false,
"jsx-no-lambda": true,
"radix": false,
"interface-name": false,
"semicolon": [true, "always", "ignore-bound-class-methods"]
},
"rulesDirectory": [
]
}