{
- "rulesDirectory": ["./node_modules/codelyzer/dist/src"],
+ "rulesDirectory": ["./node_modules/codelyzer"],
"rules": {
"class-name": true,
"curly": false,
"triple-equals": true,
"variable-name": false,
+ "directive-selector-name": [true, "camelCase"],
"component-selector-name": [true, "kebab-case"],
+ "directive-selector-type": [true, "attribute"],
"component-selector-type": [true, "element"],
- "host-parameter-decorator": true,
- "input-parameter-decorator": true,
- "output-parameter-decorator": true,
- "attribute-parameter-decorator": true,
- "input-property-directive": true,
- "output-property-directive": true
+ "directive-selector-prefix": [true, "my"],
+ "component-selector-prefix": [true, "my"],
+ "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", "my"],
+ "component-class-suffix": true,
+ "directive-class-suffix": true
}
}