48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
|
{
|
||
|
"root": true,
|
||
|
"ignorePatterns": ["projects/**/*"],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*.ts"],
|
||
|
"parserOptions": {
|
||
|
"project": ["tsconfig.json", "e2e/tsconfig.json"],
|
||
|
"createDefaultProgram": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"plugin:@angular-eslint/ng-cli-compat",
|
||
|
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
|
||
|
"plugin:@angular-eslint/template/process-inline-templates"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@angular-eslint/component-class-suffix": [
|
||
|
"error",
|
||
|
{
|
||
|
"suffixes": ["Page", "Component"]
|
||
|
}
|
||
|
],
|
||
|
"@angular-eslint/component-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "element",
|
||
|
"prefix": "app",
|
||
|
"style": "kebab-case"
|
||
|
}
|
||
|
],
|
||
|
"@angular-eslint/directive-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "attribute",
|
||
|
"prefix": "app",
|
||
|
"style": "camelCase"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.html"],
|
||
|
"extends": ["plugin:@angular-eslint/template/recommended"],
|
||
|
"rules": {}
|
||
|
}
|
||
|
]
|
||
|
}
|