2016-04-08 14:58:07 -04:00
|
|
|
{
|
2017-06-16 08:32:15 -04:00
|
|
|
"extends": "tslint-config-standard",
|
2016-04-30 02:48:00 -04:00
|
|
|
"rulesDirectory": ["./node_modules/codelyzer"],
|
2016-04-08 14:58:07 -04:00
|
|
|
"rules": {
|
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],
|
2017-06-16 08:32:15 -04:00
|
|
|
"no-floating-promises": false,
|
|
|
|
"no-unused-variable": false, // Bug, wait TypeScript 2.4
|
2016-04-08 14:58:07 -04:00
|
|
|
"member-ordering": [true,
|
|
|
|
"public-before-private",
|
|
|
|
"static-before-instance",
|
|
|
|
"variables-before-functions"
|
|
|
|
],
|
|
|
|
|
2017-12-12 08:08:48 -05:00
|
|
|
"angular-whitespace": [true, "check-interpolation", "check-semicolon"],
|
|
|
|
"banana-in-box": true,
|
|
|
|
"templates-no-negated-async": true,
|
2017-01-15 13:30:14 -05:00
|
|
|
"directive-selector": [true, "attribute", "my", "camelCase"],
|
|
|
|
"component-selector": [true, "element", "my", "kebab-case"],
|
2016-04-30 02:48:00 -04:00
|
|
|
"use-input-property-decorator": true,
|
|
|
|
"use-output-property-decorator": true,
|
|
|
|
"use-host-property-decorator": true,
|
2017-12-12 08:08:48 -05:00
|
|
|
"use-view-encapsulation": true,
|
2016-04-30 02:48:00 -04:00
|
|
|
"no-attribute-parameter-decorator": true,
|
|
|
|
"no-input-rename": true,
|
|
|
|
"no-output-rename": true,
|
2017-12-12 08:08:48 -05:00
|
|
|
"no-output-on-prefix": true,
|
2017-10-30 15:26:06 -04:00
|
|
|
"no-forward-ref": false,
|
2016-04-30 02:48:00 -04:00
|
|
|
"use-life-cycle-interface": true,
|
2017-12-12 08:08:48 -05:00
|
|
|
"contextual-life-cycle": true,
|
|
|
|
"trackBy-function": false,
|
2016-04-30 02:48:00 -04:00
|
|
|
"use-pipe-transform-interface": true,
|
|
|
|
"pipe-naming": [true, "camelCase", "my"],
|
|
|
|
"component-class-suffix": true,
|
2016-05-27 11:25:52 -04:00
|
|
|
"directive-class-suffix": true,
|
2017-12-12 08:08:48 -05:00
|
|
|
"pipe-impure": true
|
2016-04-08 14:58:07 -04:00
|
|
|
}
|
|
|
|
}
|