2018-06-13 18:34:10 +02:00
|
|
|
{
|
|
|
|
"extends": "../tslint.json",
|
|
|
|
"rules": {
|
2018-09-03 17:57:20 +02:00
|
|
|
"directive-selector": [true, "attribute", "os", "camelCase"],
|
|
|
|
"component-selector": [true, "element", "os", "kebab-case"],
|
2018-08-29 13:21:25 +02:00
|
|
|
"member-access": [true, "check-accessor", "check-constructor", "check-parameter-property"],
|
|
|
|
"comment-format": [true, "check-space"],
|
|
|
|
"curly": true,
|
|
|
|
"no-string-literal": true,
|
|
|
|
"jsdoc-format": true,
|
|
|
|
"no-trailing-whitespace": true,
|
|
|
|
"member-ordering": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"order": ["static-field", "static-method", "instance-field", "constructor", "instance-method"]
|
|
|
|
}
|
|
|
|
],
|
2018-09-07 13:12:59 +02:00
|
|
|
"no-unused-variable": true,
|
|
|
|
"typedef": [
|
|
|
|
true,
|
|
|
|
"call-signature",
|
|
|
|
"property-declaration",
|
|
|
|
"parameter",
|
|
|
|
"object-destructuring",
|
|
|
|
"array-destructuring"
|
|
|
|
]
|
2018-06-13 18:34:10 +02:00
|
|
|
}
|
|
|
|
}
|