core: add built-in Dart LSP server and formatter (#4841)

This commit is contained in:
Christoph
2025-11-28 07:33:45 +01:00
committed by GitHub
parent 025a47d01f
commit 7112a706b8
4 changed files with 29 additions and 0 deletions

View File

@@ -246,3 +246,12 @@ export const htmlbeautifier: Info = {
return Bun.which("htmlbeautifier") !== null
},
}
export const dart: Info = {
name: "dart",
command: ["dart", "format", "$FILE"],
extensions: [".dart"],
async enabled() {
return Bun.which("dart") !== null
},
}