Skip to content
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: 1 addition & 3 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
"enabled": true,
"rules": {
"recommended": true,
"nursery": {
"noDuplicateJsonKeys": "error"
},
"nursery": {},
"correctness": {
"noUnusedImports": "error",
"noUnusedPrivateClassMembers": "error"
Expand Down
4 changes: 2 additions & 2 deletions client/vscode/test/fixtures/workspace/Label.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { FunctionComponent } from 'react'
import { eventLogger } from './eventLogger.js'

export const Label: FunctionComponent<{ title: string }> = ({ title }) => {
export const Label: FunctionComponent<{ title: string; htmlFor?: string }> = ({ title, htmlFor }) => {
eventLogger.log('Label', { title })
return <label>{title}</label>
return <label htmlFor={htmlFor}>{title}</label>
}
6 changes: 3 additions & 3 deletions lib/client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export {
type ClientEnv,
type ProviderMethodOptions,
} from './client/client.js'
export {
type ConfigurationUserInput as ClientConfiguration,
type ImportedProviderConfiguration,
export type {
ConfigurationUserInput as ClientConfiguration,
ImportedProviderConfiguration,
} from './configuration.js'
export type { Logger } from './logger.js'
export { fetchProviderSource } from './providerClient/transport/module.js'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"test:integration": "pnpm -C vscode test:integration"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@biomejs/biome": "1.9.4",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/html": "^7.6.7",
"@storybook/html-vite": "^7.6.7",
Expand Down
60 changes: 30 additions & 30 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading