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 11{
2- "$schema" : " https://biomejs.dev/schemas/2.0.6 /schema.json" ,
2+ "$schema" : " https://biomejs.dev/schemas/2.2.4 /schema.json" ,
33 "assist" : { "actions" : { "source" : { "organizeImports" : " on" } } },
44 "vcs" : {
55 "enabled" : true ,
3232 "enabled" : true ,
3333 "rules" : {
3434 "recommended" : true ,
35+ "complexity" : {
36+ "noImportantStyles" : " off"
37+ },
38+ "suspicious" : {
39+ "noUnknownAtRules" : " off"
40+ },
3541 "correctness" : {
3642 "noUnusedImports" : " warn" ,
3743 "noUnusedVariables" : " warn"
Original file line number Diff line number Diff line change 55
66// biome-ignore-all lint/a11y/useFocusableInteractive: this is a false positive
77// 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 />
89
910import cx from "classnames" ;
1011import { forwardRef } from "react" ;
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ function Sessions(): React.ReactElement {
179179 < CompatSession key = { session . cursor } session = { session . node } />
180180 ) ;
181181 default :
182- unknownSessionType ( type ) ;
182+ return unknownSessionType ( type ) ;
183183 }
184184 } ) }
185185
You can’t perform that action at this time.
0 commit comments