Skip to content

Commit

Permalink
Merge pull request help-me-mom#3742 from help-me-mom/renovate/root/es…
Browse files Browse the repository at this point in the history
…lint-plugin-unicorn-44.x

chore(deps): update dependency eslint-plugin-unicorn to v44
  • Loading branch information
satanTime authored Oct 7, 2022
2 parents ef5f40a + 2c6d1cd commit 8e5c8b0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 18 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
"eslint-plugin-mdx": "2.0.5",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "43.0.2",
"eslint-plugin-unicorn": "44.0.2",
"eslint-plugin-unused-imports": "2.0.0",
"eslint-plugin-yml": "1.2.0",
"husky": "8.0.1",
Expand Down
9 changes: 6 additions & 3 deletions tests/context-with-directives/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,17 @@ export class CustomRootComponent implements AfterContentInit {
public ngAfterContentInit(): void {
for (const template of this.templates ? this.templates.toArray() : []) {
switch (template.type) {
case 'template1':
case 'template1': {
this.template1 = template.template;
break;
case 'template2':
}
case 'template2': {
this.template2 = template.template;
break;
default:
}
default: {
this.template = template.template;
}
}
}
}
Expand Down

0 comments on commit 8e5c8b0

Please sign in to comment.