File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "$schema" : " https://biomejs.dev/schemas/2.0.6 /schema.json" ,
2
+ "$schema" : " https://biomejs.dev/schemas/2.2.4 /schema.json" ,
3
3
"assist" : { "actions" : { "source" : { "organizeImports" : " on" } } },
4
4
"vcs" : {
5
5
"enabled" : true ,
32
32
"enabled" : true ,
33
33
"rules" : {
34
34
"recommended" : true ,
35
+ "complexity" : {
36
+ "noImportantStyles" : " off"
37
+ },
38
+ "suspicious" : {
39
+ "noUnknownAtRules" : " off"
40
+ },
35
41
"correctness" : {
36
42
"noUnusedImports" : " warn" ,
37
43
"noUnusedVariables" : " warn"
Original file line number Diff line number Diff line change 5
5
6
6
// biome-ignore-all lint/a11y/useFocusableInteractive: this is a false positive
7
7
// biome-ignore-all lint/a11y/useAriaPropsForRole: this is a false positive
8
+ // biome-ignore-all lint/a11y/useSemanticElements: I don't want to use an <hr />
8
9
9
10
import cx from "classnames" ;
10
11
import { forwardRef } from "react" ;
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ function Sessions(): React.ReactElement {
179
179
< CompatSession key = { session . cursor } session = { session . node } />
180
180
) ;
181
181
default :
182
- unknownSessionType ( type ) ;
182
+ return unknownSessionType ( type ) ;
183
183
}
184
184
} ) }
185
185
You can’t perform that action at this time.
0 commit comments