mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
54 lines
1.1 KiB
JSON
54 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/recommended",
|
||
|
"plugin:@angular-eslint/template/process-inline-templates"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@angular-eslint/no-conflicting-lifecycle": "off",
|
||
|
"@angular-eslint/no-host-metadata-property": "off",
|
||
|
"@angular-eslint/component-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"prefix": "cnsl",
|
||
|
"style": "kebab-case",
|
||
|
"type": "element"
|
||
|
}
|
||
|
],
|
||
|
"@angular-eslint/directive-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"prefix": "cnsl",
|
||
|
"style": "camelCase",
|
||
|
"type": "attribute"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": [
|
||
|
"*.html"
|
||
|
],
|
||
|
"extends": [
|
||
|
"plugin:@angular-eslint/template/recommended"
|
||
|
],
|
||
|
"rules": {}
|
||
|
}
|
||
|
]
|
||
|
}
|