{ "root": true, "ignorePatterns": [ "projects/**/*" ], "parserOptions": { "ecmaVersion": 2020 }, "overrides": [ { "files": [ "*.ts" ], "parserOptions": { "project": [ "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": [ "warn", { "type": "element", "prefix": "app", "style": "kebab-case" } ], "@angular-eslint/directive-selector": [ "warn", { "type": "attribute", "prefix": "app", "style": "camelCase" } ], "curly": "off", "max-len": "off", "object-shorthand": "off", "space-before-function-paren": "off", "@typescript-eslint/member-ordering": "off", "@typescript-eslint/no-inferrable-types": "off", "@typescript-eslint/naming-convention": "off", "@typescript-eslint/no-namespace": "warn", "@typescript-eslint/no-shadow": "off" } }, { "files": [ "*.html" ], "extends": [ "plugin:@angular-eslint/template/recommended" ], "rules": {} } ] }