Skip to content

Commit 79a441e

Browse files
committed
plugin: update biomejs
1 parent d96a62b commit 79a441e

File tree

4 files changed

+51
-36
lines changed

4 files changed

+51
-36
lines changed

plugin/package-lock.json

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

plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"zustand": "5.0.9"
3131
},
3232
"devDependencies": {
33-
"@biomejs/biome": "2.1.1",
33+
"@biomejs/biome": "2.3.8",
3434
"@rollup/plugin-replace": "6.0.2",
3535
"@testing-library/jest-dom": "^6.4.2",
3636
"@testing-library/react": "16.3.0",

plugin/src/query/parser.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ function tryParseAsYaml(raw: string): Record<string, unknown> {
8181

8282
const lookupToEnum = <T>(lookup: Record<string, T>) => {
8383
const keys = Object.keys(lookup);
84-
//@ts-expect-error: There is at least one element for these.
8584
return z.enum(keys).transform((key) => lookup[key]);
8685
};
8786

plugin/src/utils/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export namespace DeepPartial {
1919
typeof base[key] === "object" &&
2020
base[key] !== null
2121
) {
22-
// @ts-ignore: we know that the types make sense here
2322
merged[key] = merge(base[key], partial[key]);
2423
} else if (partial[key] !== undefined) {
2524
merged[key] = partial[key] as T[typeof key];

0 commit comments

Comments
 (0)