Skip to content

Commit

Permalink
feat: remove eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelDemey committed Dec 26, 2024
1 parent 4ce5b1b commit f34c13a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export default [
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-confusing-non-null-assertion': 'off',
'@typescript-eslint/no-empty-function': 'off'
}
Expand Down
2 changes: 1 addition & 1 deletion public/src/app/ui/partner/partner.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { WorkflowComponent } from '../workflow/workflow.component';
})
export class PartnerComponent {
partner$: Observable<Company> | undefined;
isLoading: boolean = true;
isLoading = true;
isAdmin = false;
partner: Company | undefined;

Expand Down
2 changes: 1 addition & 1 deletion public/src/app/ui/social/social.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class SocialComponent {
readonly id = input.required<string>();
readonly step = input.required<WorkflowStep>();
files = {};
isAdmin: boolean = false;
isAdmin = false;

private readonly partnerService = inject(PartnerService);
private readonly storageService = inject(StorageService);
Expand Down
4 changes: 2 additions & 2 deletions public/src/app/ui/workflow/workflow.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export class WorkflowComponent {
public id: string | undefined | null;
public workflow: Workflow | undefined;
public partner: Company | undefined;
public isLoading: boolean = true;
public isAdmin: boolean = false;
public isLoading = true;
public isAdmin = false;

private readonly route = inject(ActivatedRoute);
private readonly partnerStore = inject(StoreService);
Expand Down

0 comments on commit f34c13a

Please sign in to comment.