Skip to content

Commit 408b25f

Browse files
committed
lint package updates
1 parent 76a46e2 commit 408b25f

File tree

13 files changed

+192
-141
lines changed

13 files changed

+192
-141
lines changed

package-lock.json

Lines changed: 160 additions & 109 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,22 @@
4646
},
4747
"devDependencies": {
4848
"@angular-devkit/architect": "^0.1902.12",
49-
"@angular-eslint/builder": "19.4.0",
50-
"@angular-eslint/eslint-plugin": "19.4.0",
51-
"@angular-eslint/eslint-plugin-template": "19.4.0",
52-
"@angular-eslint/schematics": "19.4.0",
53-
"@angular-eslint/template-parser": "19.4.0",
49+
"@angular-eslint/builder": "19.7.0",
50+
"@angular-eslint/eslint-plugin": "19.7.0",
51+
"@angular-eslint/eslint-plugin-template": "19.7.0",
52+
"@angular-eslint/schematics": "19.7.0",
53+
"@angular-eslint/template-parser": "19.7.0",
5454
"@angular/build": "^19.2.12",
5555
"@angular/cli": "~19.2.12",
5656
"@angular/compiler-cli": "^19.2.11",
5757
"@types/express": "^5.0.2",
58-
"@types/node": "^22.15.18",
59-
"@typescript-eslint/eslint-plugin": "8.32.1",
60-
"@typescript-eslint/parser": "8.32.1",
58+
"@types/node": "^22.15.29",
59+
"@typescript-eslint/eslint-plugin": "8.33.0",
60+
"@typescript-eslint/parser": "8.33.0",
6161
"bootstrap": "^5.3.6",
62-
"eslint": "^9.27.0",
62+
"eslint": "^9.28.0",
6363
"eslint-config-prettier": "^10.1.5",
64-
"eslint-plugin-prettier": "^5.4.0",
64+
"eslint-plugin-prettier": "^5.4.1",
6565
"prettier": "3.5.3",
6666
"typescript": "~5.8.3"
6767
},

src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { Component, ElementRef, HostListener, OnInit, ViewChild, inject, ChangeD
33
import { NavigationEnd, Router } from '@angular/router';
44

55
@Component({
6-
changeDetection: ChangeDetectionStrategy.OnPush,
76
selector: 'app-root',
7+
standalone: false,
88
templateUrl: './app.component.html',
99
styleUrl: './app.component.scss',
10-
standalone: false,
10+
changeDetection: ChangeDetectionStrategy.OnPush,
1111
})
1212
export class AppComponent implements OnInit {
1313
private readonly document = inject(DOCUMENT);

src/app/contact/contact.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ interface IFormSpreeResult {
88
}
99

1010
@Component({
11-
changeDetection: ChangeDetectionStrategy.OnPush,
1211
selector: 'app-contact',
12+
standalone: false,
1313
templateUrl: './contact.component.html',
1414
styleUrl: './contact.component.scss',
15-
standalone: false,
15+
changeDetection: ChangeDetectionStrategy.OnPush,
1616
})
1717
export class ContactComponent {
1818
private readonly http = inject(HttpClient);

src/app/design/design-details/design-details.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { ActivatedRoute } from '@angular/router';
44
import { IDesignProject, designProjectList } from 'src/app/data/design.data';
55

66
@Component({
7-
changeDetection: ChangeDetectionStrategy.OnPush,
87
selector: 'app-design-details',
9-
templateUrl: './design-details.component.html',
108
standalone: false,
9+
templateUrl: './design-details.component.html',
10+
changeDetection: ChangeDetectionStrategy.OnPush,
1111
})
1212
export class DesignDetailsComponent implements OnInit {
1313
private readonly activatedRoute = inject(ActivatedRoute);

src/app/design/design.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';
22
import { IDesignProject, designProjectList } from '../data/design.data';
33

44
@Component({
5-
changeDetection: ChangeDetectionStrategy.OnPush,
65
selector: 'app-design',
7-
templateUrl: './design.component.html',
86
standalone: false,
7+
templateUrl: './design.component.html',
8+
changeDetection: ChangeDetectionStrategy.OnPush,
99
})
1010
export class DesignComponent {
1111
projects: IDesignProject[] = [...designProjectList];

src/app/dev/dev-details/dev-details.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { devProjectList } from 'src/app/data/dev.data';
55
import { IDevProject } from 'src/app/data/dev.data';
66

77
@Component({
8-
changeDetection: ChangeDetectionStrategy.OnPush,
98
selector: 'app-dev-details',
10-
templateUrl: './dev-details.component.html',
119
standalone: false,
10+
templateUrl: './dev-details.component.html',
11+
changeDetection: ChangeDetectionStrategy.OnPush,
1212
})
1313
export class DevDetailsComponent implements OnInit {
1414
private readonly activatedRoute = inject(ActivatedRoute);

src/app/dev/dev.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';
22
import { IDevProject, devProjectList } from '../data/dev.data';
33

44
@Component({
5-
changeDetection: ChangeDetectionStrategy.OnPush,
65
selector: 'app-dev',
7-
templateUrl: './dev.component.html',
86
standalone: false,
7+
templateUrl: './dev.component.html',
8+
changeDetection: ChangeDetectionStrategy.OnPush,
99
})
1010
export class DevComponent {
1111
projects: IDevProject[] = [...devProjectList];

src/app/gallery-thumbnails/gallery-thumbnails.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import * as dataModel from '../data/data.model';
33
import * as ngGallery from 'ng-gallery';
44

55
@Component({
6-
changeDetection: ChangeDetectionStrategy.OnPush,
76
selector: 'app-gallery-thumbnails',
7+
standalone: false,
88
templateUrl: './gallery-thumbnails.component.html',
99
styleUrl: './gallery-thumbnails.component.scss',
10-
standalone: false,
10+
changeDetection: ChangeDetectionStrategy.OnPush,
1111
})
1212
export class GalleryThumbnailsComponent implements AfterViewInit {
1313
private readonly gallery = inject(ngGallery.Gallery);

src/app/home/home.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { ISkillGroup, skillGroups } from '../data/skills.data';
33
import { designProjectList } from '../data/design.data';
44

55
@Component({
6-
changeDetection: ChangeDetectionStrategy.OnPush,
76
selector: 'app-home',
7+
standalone: false,
88
templateUrl: './home.component.html',
99
styleUrl: './home.component.scss',
10-
standalone: false,
10+
changeDetection: ChangeDetectionStrategy.OnPush,
1111
})
1212
export class HomeComponent implements AfterViewInit {
1313
@ViewChild('introContainer', { static: true }) private introContainer!: ElementRef<HTMLElement>;

0 commit comments

Comments
 (0)