Skip to content

Commit

Permalink
refactor: let's not make this rule deactivation too global (#3589)
Browse files Browse the repository at this point in the history
* fix: migration cli by making packages external

* chore: move migration to own package

* fix: linting issues

* fix: issue with publishing migration library

* Update README.md

* chore: update package-lock.json

* fix: issues from PR

* Update generate-icon-overview.ts

* fix: issues from PR

* chore: update from main

* Update generate-icon-overview.ts

* refactor: prettier

* refactor: readded this initial code change

* Update package-lock.json

---------

Co-authored-by: Nicolas Merget <nicolas.merget@deutschebahn.com>
  • Loading branch information
mfranzke and nmerget authored Dec 18, 2024
1 parent 2176720 commit fcbd8d6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/foundations/scripts/local/generate-icon-overview.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/no-unsafe-call */

/*
* This script can be used to update the icon overview for foundation testing.
*/
Expand Down Expand Up @@ -32,8 +30,10 @@ const generateIconOverview = () => {
<body>
<div class="icons-overview-container">
${ALL_ICONS.map(
(icon) => `
${
/* eslint-disable-next-line @typescript-eslint/no-unsafe-call */
ALL_ICONS.map(
(icon) => `
<div data-spacing="small" class="db-card">
<span
aria-hidden="true"
Expand All @@ -47,7 +47,8 @@ data-semantic="informational"
>${icon}</span
>
</div>`
).join('\n')}
).join('\n')
}
</div>
</body>
</html>`;
Expand Down

0 comments on commit fcbd8d6

Please sign in to comment.