koffing/tslint.json

34 lines
1.1 KiB
JSON
Raw Normal View History

{
"rulesDirectory": [
"node_modules/codelyzer"
],
"extends": "tslint:latest",
"rules": {
"quotemark": [true, "single"],
"trailing-comma": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-trailing-whitespace": false,
"no-string-literal": false,
"class-name": false,
"max-line-length": [true, 150],
"arrow-parens": false,
"directive-selector": [true, "attribute", "kof", "camelCase"],
"component-selector": [true, "element", "kof", "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,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": [true, "Component"],
"directive-class-suffix": [true, "Directive"],
"import-destructuring-spacing": true,
"templates-use-public": true,
"no-access-missing-member": true,
"invoke-injectable": true
}
}