{ "root": true, "ignorePatterns": ["projects/**/*"], "overrides": [ { "files": ["*.ts"], "parserOptions": { "project": ["tsconfig.json"], "createDefaultProgram": true }, "extends": [ "plugin:@angular-eslint/recommended", "plugin:@angular-eslint/template/process-inline-templates" ], "rules": { "@angular-eslint/directive-selector": [ "error", { "type": "attribute", "prefix": "app", "style": "camelCase" } ], "@angular-eslint/component-selector": [ "error", { "type": "element", "prefix": ["app", "page"], "style": "kebab-case" } ], "@angular-eslint/component-class-suffix": [ "error", { "suffixes": ["Component", "Page"] } ], "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/no-explicit-any": "off", "no-console": ["warn", { "allow": ["warn", "error"] }] } }, { "files": ["*.html"], "extends": ["plugin:@angular-eslint/template/recommended"], "rules": {} } ] }