diff --git a/modules/nvim/config/lua/plugins/conform.lua b/modules/nvim/config/lua/plugins/conform.lua index 74ae57e..8cc49fe 100644 --- a/modules/nvim/config/lua/plugins/conform.lua +++ b/modules/nvim/config/lua/plugins/conform.lua @@ -2,17 +2,17 @@ return { "stevearc/conform.nvim", opts = { formatters_by_ft = { - typescriptreact = { "biome-check", "prettierd" }, + typescriptreact = { "biome-check", "prettierd", stop_after_first = true }, astro = { "prettierd" }, - typescript = { "biome-check", "prettierd" }, - javascript = { "biome-check", "prettierd" }, - javascriptreact = { "biome-check", "prettierd" }, + typescript = { "biome-check", "prettierd", stop_after_first = true }, + javascript = { "biome-check", "prettierd", stop_after_first = true }, + javascriptreact = { "biome-check", "prettierd", stop_after_first = true }, html = { "prettierd" }, htmlangular = { "prettierd" }, - css = { "biome-check", "prettierd" }, + css = { "biome-check", "prettierd", stop_after_first = true }, yaml = { "prettierd" }, markdown = { "prettierd" }, - json = { "biome-check", "prettierd" }, + json = { "biome-check", "prettierd", stop_after_first = true }, lua = { "stylua" }, go = { "goimports" }, gomod = { "goimports" },