diff --git a/lua/conform/formatters/biome-organize-imports.lua b/lua/conform/formatters/biome-organize-imports.lua new file mode 100644 index 00000000..aaf307d4 --- /dev/null +++ b/lua/conform/formatters/biome-organize-imports.lua @@ -0,0 +1,23 @@ +local util = require("conform.util") +---@type conform.FileFormatterConfig +return { + meta = { + url = "https://github.com/biomejs/biome", + description = "A toolchain for web projects, aimed to provide functionalities to maintain them.", + }, + command = util.from_node_modules("biome"), + stdin = true, + args = { + "check", + "--write", + "--formatter-enabled=false", + "--linter-enabled=false", + "--organize-imports-enabled=true", + "--stdin-file-path", + "$FILENAME", + }, + cwd = util.root_file({ + "biome.json", + "biome.jsonc", + }), +}