Skip to content

Commit b6ed9b1

Browse files
committed
fix: linter issues
1 parent f588ed5 commit b6ed9b1

File tree

28 files changed

+1331
-915
lines changed

28 files changed

+1331
-915
lines changed

biome.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66
"useIgnoreFile": false
77
},
88
"files": {
9-
"ignoreUnknown": false
9+
"ignoreUnknown": false,
10+
"includes": [
11+
"**",
12+
"!packages/design-tokens/tokens/**/*",
13+
"!packages/ui-webc/src/components.d.ts",
14+
"!packages/ui-react/lib/components/stencil-generated/**/*"
15+
]
1016
},
1117
"formatter": {
1218
"enabled": true,

packages/storybook/.storybook/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export default defineMain({
2929
],
3030
esbuild: {
3131
minifyIdentifiers: false,
32-
keepNames: true
33-
}
32+
keepNames: true,
33+
},
3434
} satisfies UserConfig);
3535
},
3636
staticDirs: ["../public"],
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as a11yAddonAnnotations from "@storybook/addon-a11y/preview";
2-
import { setProjectAnnotations } from '@storybook/react-vite';
3-
import * as projectAnnotations from './preview';
2+
import { setProjectAnnotations } from "@storybook/react-vite";
3+
import * as projectAnnotations from "./preview";
44

55
// This is an important step to apply the right configuration when testing your stories.
66
// More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations
7-
setProjectAnnotations([a11yAddonAnnotations, projectAnnotations]);
7+
setProjectAnnotations([a11yAddonAnnotations, projectAnnotations]);

packages/storybook/src/stories/loader.stories.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const meta = preview.meta({
1010
argTypes: {
1111
size: {
1212
// Make sure the order makes sense
13-
options: ['xs', 'sm', 'base', 'lg', 'xl'],
14-
}
15-
}
13+
options: ["xs", "sm", "base", "lg", "xl"],
14+
},
15+
},
1616
});
1717

1818
export default meta;

packages/storybook/src/stories/select.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ export const Disabled = meta.story({
5353
</ScoutSelect>
5454
),
5555
});
56-
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/// <reference types="@vitest/browser-playwright" />
1+
/// <reference types="@vitest/browser-playwright" />

packages/ui-react/lib/components/stencil-generated/components.ts

Lines changed: 282 additions & 163 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)