2019-03-05 15:51:45 +01:00
|
|
|
{
|
|
|
|
"defaultSeverity": "error",
|
|
|
|
"extends": ["tslint:recommended"],
|
|
|
|
"rules": {
|
2019-03-07 03:47:00 +01:00
|
|
|
"arrow-parens": [true, "ban-single-arg-parens"],
|
2019-03-05 15:51:45 +01:00
|
|
|
"curly": false,
|
|
|
|
"indent": [
|
|
|
|
true,
|
|
|
|
"spaces",
|
|
|
|
2
|
|
|
|
],
|
|
|
|
"interface-name": [false],
|
|
|
|
"match-default-export-name": true,
|
|
|
|
"max-classes-per-file": [false],
|
|
|
|
"member-access": [true, "no-public"],
|
2019-03-07 03:47:00 +01:00
|
|
|
"no-bitwise": false,
|
|
|
|
"no-console": false,
|
2019-03-05 15:51:45 +01:00
|
|
|
"no-empty": [true, "allow-empty-catch"],
|
|
|
|
"no-implicit-dependencies": true,
|
|
|
|
"no-return-await": true,
|
|
|
|
"no-var-requires": false,
|
|
|
|
"no-unused-expression": false,
|
|
|
|
"object-literal-sort-keys": false,
|
|
|
|
"quotemark": [true, "single"],
|
2019-03-21 16:15:37 +01:00
|
|
|
"typedef": [
|
|
|
|
true,
|
|
|
|
"call-signature",
|
|
|
|
"arrow-call-signature",
|
|
|
|
"property-declaration"
|
|
|
|
],
|
2019-03-05 15:51:45 +01:00
|
|
|
"variable-name": [
|
|
|
|
true,
|
|
|
|
"ban-keywords",
|
|
|
|
"check-format",
|
|
|
|
"allow-leading-underscore",
|
|
|
|
"allow-pascal-case"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"rulesDirectory": []
|
|
|
|
}
|