{ "extends": [ "../../.eslintrc.json" ], "ignorePatterns": [ "!**/*" ], "overrides": [ { "files": [ "*.ts" ], "extends": [ "plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates" ], "parserOptions": { "project": [ "src/root/tsconfig.*?.json" ] }, "rules": { "@angular-eslint/directive-selector": [ "error", { "type": "attribute", "prefix": "ngx-bootstrap-base", "style": "camelCase" } ], "@angular-eslint/component-selector": [ "error", { "type": "element", "prefix": "ngx-bootstrap-base", "style": "kebab-case" } ] } }, { "files": [ "*.html" ], "extends": [ "plugin:@nrwl/nx/angular-template" ], "rules": {} } ] }