34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"extends": "tslint-config-standard",
|
|
"rulesDirectory": ["./node_modules/codelyzer"],
|
|
"rules": {
|
|
"no-inferrable-types": true,
|
|
"eofline": true,
|
|
"max-line-length": [true, 140],
|
|
"no-floating-promises": false,
|
|
"no-unused-variable": false, // Bug, wait TypeScript 2.4
|
|
"member-ordering": [true,
|
|
"public-before-private",
|
|
"static-before-instance",
|
|
"variables-before-functions"
|
|
],
|
|
|
|
"directive-selector": [true, "attribute", "my", "camelCase"],
|
|
"component-selector": [true, "element", "my", "kebab-case"],
|
|
"use-input-property-decorator": true,
|
|
"use-output-property-decorator": true,
|
|
"use-host-property-decorator": true,
|
|
"no-attribute-parameter-decorator": true,
|
|
"no-input-rename": true,
|
|
"no-output-rename": true,
|
|
"no-forward-ref": false,
|
|
"use-life-cycle-interface": true,
|
|
"use-pipe-transform-interface": true,
|
|
"pipe-naming": [true, "camelCase", "my"],
|
|
"component-class-suffix": true,
|
|
"directive-class-suffix": true,
|
|
"templates-use-public": true,
|
|
"no-access-missing-member": false,
|
|
"invoke-injectable": true
|
|
}
|
|
}
|