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 4eed4242f7
commit aa2a0dbd7b
4 changed files with 29 additions and 0 deletions
@@ -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
},
}