Skip to content
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

chore(deps-dev): bump the eslint group with 2 updates #1139

Merged
merged 2 commits into from
Dec 16, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"devDependencies": {
"@types/node": "ts5.3",
"@types/normalize-package-data": "^2.4.1",
"eslint": "8.55.0",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-with-typescript": "41.0.0",
"eslint-config-standard-with-typescript": "43.0.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"fast-glob": "^3.2.11",
Expand Down
4 changes: 4 additions & 0 deletions src/builders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ export class BomBuilder {

// region components

/* eslint "@typescript-eslint/no-unsafe-argument": "off"
--------
this rule would cause eslint to run into issues with max recursion depth
see https://github.com/typescript-eslint/typescript-eslint/issues/7298 */
bom.components = this.nestComponents(
// remove rootComponent - so the elements that are nested below it are just returned.
new Map(Array.from(allComponents.entries()).filter(([, c]) => c !== rootComponent)),
Expand Down