Merged
Conversation
| import React from "react"; | ||
| import { Editor } from "./components/ui/editor"; | ||
| import { ShareDialog } from "./components/ui/share-dialog"; | ||
| import { useDialogStore } from "./lib/dialog"; |
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import { useDialogStore } from "./lib/dialog"; |
| @@ -1,86 +1,200 @@ | |||
| import * as React from "react" | |||
| import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog" | |||
| import * as React from "react"; | |||
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import * as React from "react"; |
|
|
||
| import { cn } from "@/lib/utils" | ||
| import { buttonVariants } from "@/components/ui/button" | ||
| import { cn } from "@/lib/utils"; |
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import { cn } from "@/lib/utils"; |
| @@ -1,8 +1,16 @@ | |||
| import * as React from "react" | |||
| import * as React from "react"; | |||
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import * as React from "react"; |
| @@ -1,9 +1,17 @@ | |||
| import * as React from "react" | |||
| import { Slot } from "@radix-ui/react-slot" | |||
| import * as React from "react"; | |||
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import * as React from "react"; |
| import { debug } from "@/lib/debug"; | ||
| import { MarkerSeverity } from "@/lib/constants"; | ||
| import * as monaco from "monaco-editor"; | ||
|
|
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import { TokenizationRegistry } from "monaco-editor/esm/vs/editor/common/languages"; | |
| import * as YAML from "yaml"; | |
| import { compressToEncodedURIComponent, decompressFromEncodedURIComponent } from 'lz-string'; | ||
| import { debug } from "@/lib/debug"; | ||
| import { formatYaml } from "@/lib/format-yaml"; | ||
| import { parseDocument } from "yaml"; |
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import { parseDocument } from "yaml"; |
| @@ -1,69 +1,96 @@ | |||
| import * as monaco from 'monaco-editor'; | |||
| import { debug } from '../debug'; | |||
| import * as monaco from "monaco-editor"; | |||
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import * as monaco from "monaco-editor"; |
| @@ -0,0 +1,16 @@ | |||
| import { clsx, type ClassValue } from "clsx"; | |||
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import { clsx, type ClassValue } from "clsx"; | |
| import { type ClassValue, clsx } from "clsx"; |
| import { defineConfig } from 'vite'; | ||
| import path from 'node:path'; | ||
| import react from '@vitejs/plugin-react'; | ||
| import { defineConfig } from "vite"; |
Contributor
There was a problem hiding this comment.
[Biome] reported by reviewdog 🐶
Suggested change
| import { defineConfig } from "vite"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.