mirror of
https://github.com/valitydev/koffing.git
synced 2024-11-06 09:15:20 +00:00
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"rulesDirectory": [
|
|
"node_modules/codelyzer"
|
|
],
|
|
"extends": "tslint:recommended",
|
|
"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": false,
|
|
"arrow-parens": false,
|
|
"no-bitwise": false,
|
|
"no-angle-bracket-type-assertion": false,
|
|
"no-console": [true, "log"],
|
|
"angular-whitespace": [true, "check-interpolation", "check-pipe"],
|
|
"banana-in-box": true,
|
|
"templates-no-negated-async": true,
|
|
"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,
|
|
"no-forward-ref": true,
|
|
"use-life-cycle-interface": true,
|
|
"use-pipe-transform-interface": true,
|
|
"pipe-naming": [true, "camelCase", "kof"],
|
|
"component-class-suffix": true,
|
|
"directive-class-suffix": true,
|
|
"templates-use-public": true,
|
|
"no-access-missing-member": true,
|
|
"invoke-injectable": true,
|
|
"template-to-ng-template": true
|
|
}
|
|
}
|