Skip to content

Commit 10dcc5a

Browse files
committed
disable a11y lints for desktop
1 parent 37dddab commit 10dcc5a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

apps/desktop/src/routes/(window-chrome)/(main).tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,6 @@ function Page() {
337337
</a>
338338
<ErrorBoundary fallback={<></>}>
339339
<Suspense>
340-
{/** biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */}
341-
{/** biome-ignore lint/a11y/noStaticElementInteractions: <explanation> */}
342340
<span
343341
onClick={async () => {
344342
if (license.data?.type !== "pro") {

biome.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,13 @@
3030
"organizeImports": "on"
3131
}
3232
}
33-
}
33+
},
34+
"overrides": [
35+
{
36+
"includes": ["apps/desktop/**/*"],
37+
"linter": {
38+
"rules": { "a11y": "off" }
39+
}
40+
}
41+
]
3442
}

0 commit comments

Comments
 (0)