This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-20 20:47:02 -05:00
|
|
|
{
|
|
|
|
"extends": "tslint:recommended",
|
|
|
|
"rules": {
|
|
|
|
"no-reference": false,
|
|
|
|
"space-before-function-paren": true,
|
2021-08-21 10:44:53 -05:00
|
|
|
"triple-equals": true,
|
2021-08-21 17:06:51 -05:00
|
|
|
"quotemark": [
|
|
|
|
true,
|
|
|
|
"single",
|
|
|
|
"avoid-escape",
|
|
|
|
"avoid-template"
|
|
|
|
],
|
2021-08-21 10:44:53 -05:00
|
|
|
"max-line-length": [
|
|
|
|
true, {
|
|
|
|
"limit": 75,
|
2021-08-21 12:45:58 -05:00
|
|
|
"check-strings": true,
|
|
|
|
"ignore-pattern": "\\s+state\\.log\\("
|
2021-08-21 10:44:53 -05:00
|
|
|
}
|
|
|
|
],
|
2021-08-20 20:47:02 -05:00
|
|
|
"whitespace": [
|
|
|
|
true,
|
|
|
|
"check-branch",
|
|
|
|
"check-decl",
|
|
|
|
"check-operator",
|
|
|
|
"check-rest-spread",
|
|
|
|
"check-type",
|
|
|
|
"check-typecast",
|
|
|
|
"check-type-operator",
|
|
|
|
"check-preblock",
|
|
|
|
"check-postbrace"
|
2021-08-21 10:44:53 -05:00
|
|
|
],
|
|
|
|
"typedef": [
|
|
|
|
true,
|
|
|
|
"call-signature",
|
|
|
|
"arrow-call-signature",
|
|
|
|
"parameter",
|
|
|
|
"arrow-parameter",
|
|
|
|
"property-declaration",
|
|
|
|
"variable-declaration",
|
|
|
|
"member-variable-declaration"
|
2021-08-20 20:47:02 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|