Skip to content

chore: bump @angular-eslint/builder from 20.0.0 to 20.1.1 #1289

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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
@@ -34,7 +34,7 @@
"devDependencies": {
"@angular-builders/jest": "^19.0.1",
"@angular-devkit/build-angular": "^19.0.6",
"@angular-eslint/builder": "^20.0.0",
"@angular-eslint/builder": "^20.1.1",
"@angular-eslint/eslint-plugin": "19.8.0",
"@angular-eslint/eslint-plugin-template": "20.0.0",
"@angular-eslint/schematics": "^20.0.0",

Unchanged files with check annotations Beta

@Component({
selector: 'hda-host',
template: ' <hda-model-editor [model]="model" (modelChange)="modelChanged($event)"> </hda-model-editor> ',
standalone: false

Check warning on line 19 in projects/hyperdash-angular/src/editor/model/model-editor.component.test.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
class HostComponent {
public model?: object;
@Component({
selector: 'hda-prop-editor',
template: 'property editor',
standalone: false

Check warning on line 29 in projects/hyperdash-angular/src/editor/model/model-editor.component.test.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
class PropEditorComponent {}
modelChangedObservable = EMPTY;
selector: 'hda-model-json-editor',
changeDetection: ChangeDetectionStrategy.OnPush,
template: ' <hda-model-editor [model]="modelObject"></hda-model-editor> ',
standalone: false

Check warning on line 15 in projects/hyperdash-angular/src/editor/model-json/model-json-editor.component.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
export class ModelJsonEditorComponent implements OnChanges, OnDestroy {
/**
@Component({
selector: 'hda-host',
template: ' <hda-model-json-editor [(modelJson)]="modelJson"> </hda-model-json-editor> ',
standalone: false

Check warning on line 24 in projects/hyperdash-angular/src/editor/model-json/model-json-editor.component.test.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
class HostComponent {
public modelJson?: object;
@Component({
selector: 'hda-prop-editor',
template: 'property editor',
standalone: false

Check warning on line 49 in projects/hyperdash-angular/src/editor/model-json/model-json-editor.component.test.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
class PropEditorComponent {
public constructor(@Inject(EDITOR_API) public editorApi: EditorApi<string>) {}
selector: 'app-example-dash',
templateUrl: './example-dash.component.html',
styleUrls: ['./example-dash.component.scss'],
standalone: false

Check warning on line 34 in src/example-dash/example-dash.component.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
export class ExampleDashComponent implements OnInit {
public json: { [key: string]: JsonPrimitive } = {
</div>
</div>
`,
standalone: false

Check warning on line 250 in src/example-dash/example-dash.component.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
export class ExampleRendererComponent implements OnInit {
public dataObservable!: Observable<string>;
<ng-container *ngFor="let child of api.model.children" [hdaDashboardModel]="child"> </ng-container>
</div>
`,
standalone: false

Check warning on line 279 in src/example-dash/example-dash.component.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
export class ExampleContainerRendererComponent {
public constructor(@Inject(RENDERER_API) public readonly api: RendererApi<ExampleContainer>) {}
<h5>{{ label }}</h5>
<input type="text" [(ngModel)]="currentValue" (keyup.enter)="propagateChange()" (focusout)="propagateChange()" />
`,
standalone: false

Check warning on line 295 in src/example-dash/example-dash.component.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
export class StringPropertyEditorComponent {
public currentValue?: string;
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false

Check warning on line 7 in src/app/app.component.ts

GitHub Actions / test

Components, Directives and Pipes should not opt out of standalone
})
export class AppComponent {
public readonly title: string = 'hyperdash-angular';