Merge pull request #424 from Pascalmh/prettier-control-value-accessor

chore: run prettier on files in control-value-accessor folder
This commit is contained in:
Laforge Thomas
2023-12-18 15:50:26 +01:00
committed by GitHub
4 changed files with 12 additions and 13 deletions

View File

@@ -5,8 +5,9 @@ import { FeedbackFormComponent } from './feedback-form/feedback-form.component';
standalone: true,
imports: [FeedbackFormComponent],
selector: 'app-root',
template: `<app-feedback-form
(feedBackSubmit)="apiCall($event)"></app-feedback-form>`,
template: `
<app-feedback-form (feedBackSubmit)="apiCall($event)"></app-feedback-form>
`,
})
export class AppComponent {
apiCall(event: Record<string, string | null>): void {

View File

@@ -1,10 +1,10 @@
import { EventEmitter } from '@angular/core';
import { Output } from '@angular/core';
import { Component } from '@angular/core';
import { Validators } from '@angular/forms';
import { FormControl } from '@angular/forms';
import { FormGroup } from '@angular/forms';
import { ReactiveFormsModule } from '@angular/forms';
import { Component, EventEmitter, Output } from '@angular/core';
import {
FormControl,
FormGroup,
ReactiveFormsModule,
Validators,
} from '@angular/forms';
import { RatingControlComponent } from '../rating-control/rating-control.component';
@Component({

View File

@@ -1,6 +1,4 @@
import { EventEmitter } from '@angular/core';
import { Output } from '@angular/core';
import { Component } from '@angular/core';
import { Component, EventEmitter, Output } from '@angular/core';
@Component({
standalone: true,