2016-12-22 15:09:40 +00:00
|
|
|
{
|
2019-01-30 13:31:56 +00:00
|
|
|
"rulesDirectory": ["node_modules/codelyzer"],
|
|
|
|
"extends": ["tslint:recommended", "tslint-config-prettier"],
|
|
|
|
"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-view-encapsulation": false,
|
|
|
|
"use-life-cycle-interface": true,
|
|
|
|
"use-pipe-transform-interface": true,
|
|
|
|
"pipe-naming": [true, "camelCase", "kof"],
|
|
|
|
"component-class-suffix": true,
|
|
|
|
"directive-class-suffix": true,
|
|
|
|
"pipe-impure": true,
|
|
|
|
"interface-name": false
|
|
|
|
}
|
2016-12-22 15:09:40 +00:00
|
|
|
}
|