-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
31 lines (31 loc) · 875 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
30
31
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": {
"options": [ 120 ]
},
"new-parens": true,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-arg": true,
"no-bitwise": false,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": [true, 2],
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"no-console": false,
"arrow-return-shorthand": true,
"quotemark": [true, "single", "jsx-double"],
"curly": [true, "as-needed"],
"interface-name": [true, "never-prefix"],
"indent": [true, "spaces", 2],
"eofline": true,
"object-literal-sort-keys": false,
"whitespace": [true, "check-decl", "check-operator", "check-type-operator", "check-type", "check-preblock"]
},
"jsRules": {
"max-line-length": {
"options": [
120
]
}
}
}