2024-01-26 23:07:40 +01:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"ignorePatterns": [
|
|
|
|
"app/**/*", // ignore nodeJs files
|
|
|
|
"dist/**/*",
|
2024-03-20 13:07:31 +01:00
|
|
|
"release/**/*",
|
|
|
|
"src/**/*"
|
2024-01-26 23:07:40 +01:00
|
|
|
],
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"*.ts"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"project": [
|
|
|
|
"./tsconfig.serve.json",
|
|
|
|
"./src/tsconfig.app.json",
|
|
|
|
"./src/tsconfig.spec.json",
|
|
|
|
"./e2e/tsconfig.e2e.json"
|
|
|
|
],
|
|
|
|
"createDefaultProgram": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:@angular-eslint/recommended",
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
|
|
"plugin:@angular-eslint/template/process-inline-templates"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-empty-function": 0,
|
|
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
|
|
"@typescript-eslint/no-unsafe-assignment": 0,
|
|
|
|
"@typescript-eslint/no-unsafe-call": 0,
|
|
|
|
"@typescript-eslint/no-unsafe-member-access": 0,
|
|
|
|
"prefer-arrow/prefer-arrow-functions": 0,
|
|
|
|
"@angular-eslint/directive-selector": 0,
|
|
|
|
"@angular-eslint/component-selector": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"type": "element",
|
|
|
|
"prefix": "app",
|
|
|
|
"style": "kebab-case"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"jsdoc/newline-after-description": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"*.html"
|
|
|
|
],
|
|
|
|
"extends": [
|
|
|
|
"plugin:@angular-eslint/template/recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|