From ac4dd900f2ceb4a5c4bb4a143218d48ad2bfe9b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20=C5=BDdanov?= Date: Mon, 21 Jul 2025 17:36:41 +0300 Subject: [PATCH] fix(oxlint): remove conform config Conform doesn't have support for oxlint --- lua/astrocommunity/pack/oxlint/init.lua | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/lua/astrocommunity/pack/oxlint/init.lua b/lua/astrocommunity/pack/oxlint/init.lua index 3de0d6635..3b9b6c136 100644 --- a/lua/astrocommunity/pack/oxlint/init.lua +++ b/lua/astrocommunity/pack/oxlint/init.lua @@ -19,24 +19,4 @@ return { opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "oxlint" }) end, }, - { - "stevearc/conform.nvim", - optional = true, - opts = function(_, opts) - if not opts.formatters_by_ft then opts.formatters_by_ft = {} end - -- https://oxc.rs/docs/guide/usage/linter.html - local supported_ft = { - "javascript", - "typescript", - "javascriptreact", - "typescriptreact", - "astro", - "svelte", - "vue", - } - for _, ft in ipairs(supported_ft) do - opts.formatters_by_ft[ft] = { "oxlint" } - end - end, - }, }