Skip to content

Commit

Permalink
chore(dependencies): ⬆️ upgrade nx dependencies to angular 19
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoss54 committed Dec 18, 2024
1 parent 54fc900 commit c9320fa
Show file tree
Hide file tree
Showing 611 changed files with 9,373 additions and 10,280 deletions.
48 changes: 38 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nx", "prettier"],
"ignorePatterns": [
"**/*"
],
"plugins": [
"@nx",
"prettier"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"files": [
"*.ts",
"*.tsx",
"*.js",
"*.jsx"
],
"rules": {
"prettier/prettier": "error",
"@nx/enforce-module-boundaries": [
Expand All @@ -15,25 +25,37 @@
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
"onlyDependOnLibsWithTags": [
"*"
]
}
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"files": [
"*.ts",
"*.tsx"
],
"extends": [
"plugin:@nx/typescript"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.spec.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"files": [
"*.spec.ts",
"*.tsx"
],
"extends": [
"plugin:@nx/typescript"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-explicit-any": "off",
Expand All @@ -42,8 +64,14 @@
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript", "prettier"],
"files": [
"*.js",
"*.jsx"
],
"extends": [
"plugin:@nx/javascript",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-extra-semi": "error",
Expand Down
29 changes: 22 additions & 7 deletions apps/01-hands-on-solution/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"extends": [
"../../.eslintrc.json"
],
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": ["*.ts"],
"extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
"files": [
"*.ts"
],
"extends": [
"plugin:@nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
Expand All @@ -21,12 +30,18 @@
"prefix": "sfeir",
"style": "kebab-case"
}
]
],
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/no-output-native": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"files": [
"*.html"
],
"extends": [
"plugin:@nx/angular-template"
],
"rules": {}
}
]
Expand Down
1 change: 1 addition & 0 deletions apps/01-hands-on-solution/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'sfeir-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false,
})
export class AppComponent {
name = 'SFEIR - LUXEMBOURG';
Expand Down
29 changes: 22 additions & 7 deletions apps/01-hands-on/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"extends": [
"../../.eslintrc.json"
],
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": ["*.ts"],
"extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
"files": [
"*.ts"
],
"extends": [
"plugin:@nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
Expand All @@ -21,12 +30,18 @@
"prefix": "sfeir",
"style": "kebab-case"
}
]
],
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/no-output-native": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"files": [
"*.html"
],
"extends": [
"plugin:@nx/angular-template"
],
"rules": {}
}
]
Expand Down
29 changes: 22 additions & 7 deletions apps/02-ngg-solution/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"extends": [
"../../.eslintrc.json"
],
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": ["*.ts"],
"extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
"files": [
"*.ts"
],
"extends": [
"plugin:@nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
Expand All @@ -21,12 +30,18 @@
"prefix": "sfeir",
"style": "kebab-case"
}
]
],
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/no-output-native": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"files": [
"*.html"
],
"extends": [
"plugin:@nx/angular-template"
],
"rules": {}
}
]
Expand Down
1 change: 1 addition & 0 deletions apps/02-ngg-solution/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'sfeir-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false,
})
export class AppComponent {
name = 'SFEIR - LUXEMBOURG';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'sfeir-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
standalone: false,
})
export class HomeComponent {
name = 'Sfeir Luxembourg';
Expand Down
29 changes: 22 additions & 7 deletions apps/02-ngg/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"extends": [
"../../.eslintrc.json"
],
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": ["*.ts"],
"extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
"files": [
"*.ts"
],
"extends": [
"plugin:@nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
Expand All @@ -21,12 +30,18 @@
"prefix": "sfeir",
"style": "kebab-case"
}
]
],
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/no-output-native": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"files": [
"*.html"
],
"extends": [
"plugin:@nx/angular-template"
],
"rules": {}
}
]
Expand Down
1 change: 1 addition & 0 deletions apps/02-ngg/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'sfeir-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false,
})
export class AppComponent {
name = 'SFEIR - LUXEMBOURG';
Expand Down
29 changes: 22 additions & 7 deletions apps/03-cpt-hierarchy-solution/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"extends": [
"../../.eslintrc.json"
],
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": ["*.ts"],
"extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
"files": [
"*.ts"
],
"extends": [
"plugin:@nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
Expand All @@ -21,12 +30,18 @@
"prefix": "sfeir",
"style": "kebab-case"
}
]
],
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/no-output-native": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"files": [
"*.html"
],
"extends": [
"plugin:@nx/angular-template"
],
"rules": {}
}
]
Expand Down
1 change: 1 addition & 0 deletions apps/03-cpt-hierarchy-solution/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'sfeir-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false,
})
export class AppComponent {
name = 'SFEIR - LUXEMBOURG';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'sfeir-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
standalone: false,
})
export class HomeComponent {
name = 'Sfeir Luxembourg';
Expand Down
Loading

0 comments on commit c9320fa

Please sign in to comment.