2016-04-08 14:58:07 -04:00
|
|
|
{
|
2019-04-02 12:30:26 -04:00
|
|
|
"extends": [ "tslint-angular", "tslint-config-standard" ],
|
2016-04-08 14:58:07 -04:00
|
|
|
"rules": {
|
2020-06-26 02:37:26 -04:00
|
|
|
"deprecation": {
|
|
|
|
"severity": "warning"
|
|
|
|
},
|
2016-05-27 16:04:27 -04:00
|
|
|
"no-inferrable-types": true,
|
2016-04-08 14:58:07 -04:00
|
|
|
"eofline": true,
|
|
|
|
"max-line-length": [true, 140],
|
2020-06-26 02:37:26 -04:00
|
|
|
"no-floating-promises": false, // Memory issues
|
2019-04-02 12:30:26 -04:00
|
|
|
"await-promise": [true, "PromiseLike"],
|
2018-10-15 19:04:50 -04:00
|
|
|
"member-ordering": [true, {
|
|
|
|
"order": [
|
|
|
|
"public-static-field",
|
|
|
|
"private-static-field",
|
|
|
|
"public-instance-field",
|
|
|
|
"private-instance-field",
|
|
|
|
"public-constructor",
|
|
|
|
"private-constructor",
|
|
|
|
"public-instance-method",
|
|
|
|
"protected-instance-method",
|
|
|
|
"private-instance-method"
|
|
|
|
]}
|
2016-04-08 14:58:07 -04:00
|
|
|
],
|
2019-08-01 05:38:26 -04:00
|
|
|
"variable-name": [
|
|
|
|
true,
|
|
|
|
"ban-keywords",
|
|
|
|
"check-format",
|
|
|
|
"allow-leading-underscore",
|
|
|
|
"allow-pascal-case",
|
|
|
|
"allow-trailing-underscore"
|
|
|
|
],
|
2016-04-08 14:58:07 -04:00
|
|
|
|
2019-04-02 12:30:26 -04:00
|
|
|
"no-shadowed-variable": false,
|
|
|
|
"no-bitwise": false,
|
|
|
|
"max-classes-per-file": false,
|
|
|
|
"interface-over-type-literal": false
|
2016-04-08 14:58:07 -04:00
|
|
|
}
|
|
|
|
}
|