46 lines
847 B
JSON
46 lines
847 B
JSON
|
{
|
||
|
"extends": "../.eslintrc.json",
|
||
|
"ignorePatterns": [
|
||
|
"!**/*"
|
||
|
],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": [
|
||
|
"*.ts"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"project": [
|
||
|
"e2e//tsconfig.app.json",
|
||
|
"e2e//tsconfig.spec.json",
|
||
|
"e2e//e2e/tsconfig.json"
|
||
|
],
|
||
|
"createDefaultProgram": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"@angular-eslint/directive-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "attribute",
|
||
|
"prefix": "",
|
||
|
"style": "camelCase"
|
||
|
}
|
||
|
],
|
||
|
"@angular-eslint/component-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "element",
|
||
|
"prefix": "",
|
||
|
"style": "kebab-case"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": [
|
||
|
"*.html"
|
||
|
],
|
||
|
"rules": {}
|
||
|
}
|
||
|
]
|
||
|
}
|