Viktor Hedefalk

Results 45 comments of Viktor Hedefalk

We have the same issue, need it for curvature setting and don't want to mess with ts-ignores. Working around with: ``` import { Edge as XYFlowEdge } from "@xyflow/react"; type...

I'm using transforms with valibot like: ```ts const CorsOriginsSchema = v.pipe( v.string(), v.transform((value) => { if (value.trim() === "") { return []; } return value.split(",").map((origin) => origin.trim()); }) ); ```...

Old issue, but seems to be something related: https://github.com/sbt/sbt-dependency-graph/issues/95

Hm, I did get it working now by qualifying both with subproject AND scala-version-suffix: Working: `migrationLambda / whatDependsOn rat cloudformation_2.13` Gives errors: ``` whatDependsOn rat cloudformation_2.13 migrationLambda / whatDependsOn rat...

Or is it that the eslint lang service for each file traverses down until it hits a config file? And for this particular one doesn't find one? But it should...