Skip to content

Commit 1baf3ff

Browse files
authored
upgrade biome to 1.9.4 (#227)
1 parent f56e789 commit 1baf3ff

File tree

5 files changed

+37
-39
lines changed

5 files changed

+37
-39
lines changed

biome.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
"enabled": true,
88
"rules": {
99
"recommended": true,
10-
"nursery": {
11-
"noDuplicateJsonKeys": "error"
12-
},
10+
"nursery": {},
1311
"correctness": {
1412
"noUnusedImports": "error",
1513
"noUnusedPrivateClassMembers": "error"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { FunctionComponent } from 'react'
22
import { eventLogger } from './eventLogger.js'
33

4-
export const Label: FunctionComponent<{ title: string }> = ({ title }) => {
4+
export const Label: FunctionComponent<{ title: string; htmlFor?: string }> = ({ title, htmlFor }) => {
55
eventLogger.log('Label', { title })
6-
return <label>{title}</label>
6+
return <label htmlFor={htmlFor}>{title}</label>
77
}

lib/client/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ export {
99
type ClientEnv,
1010
type ProviderMethodOptions,
1111
} from './client/client.js'
12-
export {
13-
type ConfigurationUserInput as ClientConfiguration,
14-
type ImportedProviderConfiguration,
12+
export type {
13+
ConfigurationUserInput as ClientConfiguration,
14+
ImportedProviderConfiguration,
1515
} from './configuration.js'
1616
export type { Logger } from './logger.js'
1717
export { fetchProviderSource } from './providerClient/transport/module.js'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"test:integration": "pnpm -C vscode test:integration"
2727
},
2828
"devDependencies": {
29-
"@biomejs/biome": "1.8.3",
29+
"@biomejs/biome": "1.9.4",
3030
"@storybook/addon-essentials": "^7.6.7",
3131
"@storybook/html": "^7.6.7",
3232
"@storybook/html-vite": "^7.6.7",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)