{ "root": true, "ignorePatterns": [ "projects/**/*" ], "overrides": [ { "files": [ "*.ts" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@angular-eslint/recommended", "plugin:@angular-eslint/template/process-inline-templates", "plugin:@ngrx/recommended-requiring-type-checking" ], "rules": { "no-console": "error", "no-debugger": "error", "@angular-eslint/directive-selector": [ "error", { "type": "attribute", "prefix": "sm", "style": "camelCase" } ], "@angular-eslint/component-selector": [ "error", { "type": "element", "prefix": "sm", "style": "kebab-case" } ], "@ngrx/prefer-effect-callback-in-block-statement": "off" } }, { "files": [ "*.html" ], "extends": [ "plugin:@angular-eslint/template/recommended", "plugin:@angular-eslint/template/accessibility" ], "rules": { "@angular-eslint/template/use-track-by-function": "warn" } } ] }