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
8 changes: 7 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"vcs": {
"enabled": true,
Expand Down Expand Up @@ -32,6 +32,12 @@
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"noImportantStyles": "off"
},
"suspicious": {
"noUnknownAtRules": "off"
},
"correctness": {
"noUnusedImports": "warn",
"noUnusedVariables": "warn"
Expand Down
72 changes: 36 additions & 36 deletions frontend/package-lock.json

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

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"vaul": "^1.1.2"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@biomejs/biome": "^2.2.4",
"@browser-logos/chrome": "^2.0.0",
"@browser-logos/firefox": "^3.0.10",
"@browser-logos/safari": "^2.1.0",
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Separator/Separator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

// biome-ignore-all lint/a11y/useFocusableInteractive: this is a false positive
// biome-ignore-all lint/a11y/useAriaPropsForRole: this is a false positive
// biome-ignore-all lint/a11y/useSemanticElements: I don't want to use an <hr />

import cx from "classnames";
import { forwardRef } from "react";
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/_account.sessions.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function Sessions(): React.ReactElement {
<CompatSession key={session.cursor} session={session.node} />
);
default:
unknownSessionType(type);
return unknownSessionType(type);
}
})}

Expand Down
Loading