Skip to content

Commit

Permalink
refactor: start using df prefix for all app components
Browse files Browse the repository at this point in the history
  • Loading branch information
jakerenzella committed Jun 18, 2021
1 parent ae95341 commit de7cb09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"error",
{
"type": "attribute",
"prefix": "app",
"prefix": "df",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"prefix": "df",
"style": "kebab-case"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';
import { MatDialog } from '@angular/material/dialog';

@Component({
selector: 'staff-task-list',
selector: 'df-staff-task-list',
templateUrl: './staff-task-list.component.html',
styleUrls: ['./staff-task-list.component.scss'],
})
Expand Down

0 comments on commit de7cb09

Please sign in to comment.