Skip to content

Commit

Permalink
fix: upgrade biome
Browse files Browse the repository at this point in the history
  • Loading branch information
HerringtonDarkholme committed Oct 13, 2024
1 parent 0df47eb commit 83084c3
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 38 deletions.
3 changes: 3 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"noNonNullAssertion": "off",
"noParameterAssign": "off",
"useTemplate": "off"
},
"a11y": {
"useSemanticElements": "off"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
"*.{ts, js}": "biome lint"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@biomejs/biome": "1.9.3",
"@stylexjs/esbuild-plugin": "0.8.0",
"@stylexjs/stylex": "0.8.0",
"@types/glob": "8.1.0",
Expand Down
74 changes: 37 additions & 37 deletions pnpm-lock.yaml

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

1 change: 1 addition & 0 deletions src/webview/LoadingBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default function LoadingBar({ loading }: LoadingBarProps) {
aria-valuenow={5}
aria-valuemax={10}
aria-hidden={!loading}
tabIndex={0}
>
<div className="progressBar" style={style} />
</div>
Expand Down
1 change: 1 addition & 0 deletions src/webview/SearchSidebar/SearchResultList/TreeHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export default function TreeHeader({
{...stylex.props(styles.toggleButton)}
aria-label="expand/collapse button"
role="button"
tabIndex={-1}
>
{isExpanded ? <VscChevronDown /> : <VscChevronRight />}
</div>
Expand Down

0 comments on commit 83084c3

Please sign in to comment.