2016-04-08 20:58:07 +02:00
|
|
|
{
|
2017-06-16 14:32:15 +02:00
|
|
|
"extends": "tslint-config-standard",
|
2016-04-30 08:48:00 +02:00
|
|
|
"rulesDirectory": ["./node_modules/codelyzer"],
|
2016-04-08 20:58:07 +02:00
|
|
|
"rules": {
|
2016-05-27 22:04:27 +02:00
|
|
|
"no-inferrable-types": true,
|
2016-04-08 20:58:07 +02:00
|
|
|
"eofline": true,
|
|
|
|
"max-line-length": [true, 140],
|
2017-06-16 14:32:15 +02:00
|
|
|
"no-floating-promises": false,
|
2018-03-08 17:31:11 +01:00
|
|
|
"no-unused-variable": false, // Memory issues
|
2016-04-08 20:58:07 +02:00
|
|
|
"member-ordering": [true,
|
|
|
|
"public-before-private",
|
|
|
|
"static-before-instance",
|
|
|
|
"variables-before-functions"
|
|
|
|
],
|
|
|
|
|
2017-12-12 14:08:48 +01:00
|
|
|
"angular-whitespace": [true, "check-interpolation", "check-semicolon"],
|
|
|
|
"banana-in-box": true,
|
|
|
|
"templates-no-negated-async": true,
|
2017-01-15 19:30:14 +01:00
|
|
|
"directive-selector": [true, "attribute", "my", "camelCase"],
|
|
|
|
"component-selector": [true, "element", "my", "kebab-case"],
|
2016-04-30 08:48:00 +02:00
|
|
|
"use-input-property-decorator": true,
|
|
|
|
"use-output-property-decorator": true,
|
|
|
|
"use-host-property-decorator": true,
|
2017-12-12 14:08:48 +01:00
|
|
|
"use-view-encapsulation": true,
|
2016-04-30 08:48:00 +02:00
|
|
|
"no-attribute-parameter-decorator": true,
|
|
|
|
"no-input-rename": true,
|
|
|
|
"no-output-rename": true,
|
2017-12-12 14:08:48 +01:00
|
|
|
"no-output-on-prefix": true,
|
2017-10-30 20:26:06 +01:00
|
|
|
"no-forward-ref": false,
|
2016-04-30 08:48:00 +02:00
|
|
|
"use-life-cycle-interface": true,
|
2017-12-12 14:08:48 +01:00
|
|
|
"contextual-life-cycle": true,
|
|
|
|
"trackBy-function": false,
|
2016-04-30 08:48:00 +02:00
|
|
|
"use-pipe-transform-interface": true,
|
2018-09-21 09:26:02 +02:00
|
|
|
"pipe-prefix": [true, "my"],
|
2016-04-30 08:48:00 +02:00
|
|
|
"component-class-suffix": true,
|
2016-05-27 17:25:52 +02:00
|
|
|
"directive-class-suffix": true,
|
2017-12-12 14:08:48 +01:00
|
|
|
"pipe-impure": true
|
2016-04-08 20:58:07 +02:00
|
|
|
}
|
|
|
|
}
|