blob: 7cf929f0af9d97fa56be1d8871deae2b76a2a112 (
plain) (
blame)
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
|
{
"defaultSeverity": "error",
"extends": [
"tslint-config-airbnb",
"tslint-consistent-codestyle",
"tslint-eslint-rules",
"tslint-microsoft-contrib/latest",
"tslint:all"
],
"jsRules": {
"max-line-length": {
"options": [
120
]
}
},
"rules": {
"max-line-length": {
"options": [
120
]
},
"no-constant-condition": true
},
"rulesDirectory": [
"node_modules/tslint-eslint-rules/dist/rules"
]
}
|