chore: ⬆️ Upgrade Biome to v2

This commit is contained in:
Jesse Wierzbinski 2025-06-26 22:39:02 +02:00
parent 00b6783ae0
commit 9b55759220
No known key found for this signature in database
155 changed files with 311 additions and 293 deletions

View file

@ -1,9 +1,9 @@
<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { DialogContentEmits, DialogContentProps } from "reka-ui";
import { useForwardPropsEmits } from "reka-ui";
import { DrawerContent, DrawerPortal } from "vaul-vue";
import type { HtmlHTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
import DrawerOverlay from "./DrawerOverlay.vue";
const props = defineProps<

View file

@ -1,8 +1,8 @@
<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { DrawerDescriptionProps } from "vaul-vue";
import { DrawerDescription } from "vaul-vue";
import { type HtmlHTMLAttributes, computed } from "vue";
import { computed, type HtmlHTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DrawerDescriptionProps & { class?: HtmlHTMLAttributes["class"] }

View file

@ -1,6 +1,6 @@
<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { HtmlHTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<{
class?: HtmlHTMLAttributes["class"];

View file

@ -1,6 +1,6 @@
<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { HtmlHTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<{
class?: HtmlHTMLAttributes["class"];

View file

@ -1,8 +1,8 @@
<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { DialogOverlayProps } from "reka-ui";
import { DrawerOverlay } from "vaul-vue";
import { type HtmlHTMLAttributes, computed } from "vue";
import { computed, type HtmlHTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DialogOverlayProps & { class?: HtmlHTMLAttributes["class"] }

View file

@ -1,8 +1,8 @@
<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { DrawerTitleProps } from "vaul-vue";
import { DrawerTitle } from "vaul-vue";
import { type HtmlHTMLAttributes, computed } from "vue";
import { computed, type HtmlHTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DrawerTitleProps & { class?: HtmlHTMLAttributes["class"] }