From 85afbbc94bb45891799a4851b2edf753b51f18b0 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 2 Apr 2026 10:07:50 +0200 Subject: [PATCH] fix(oxc): added `fixKind = "all"` --- lua/lazyvim/plugins/extras/lang/typescript/oxc.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/lang/typescript/oxc.lua b/lua/lazyvim/plugins/extras/lang/typescript/oxc.lua index a516fc89..d4efb30c 100644 --- a/lua/lazyvim/plugins/extras/lang/typescript/oxc.lua +++ b/lua/lazyvim/plugins/extras/lang/typescript/oxc.lua @@ -29,7 +29,11 @@ return { opts = { servers = { ---@type lspconfig.settings.oxlint - oxlint = {}, + oxlint = { + settings = { + fixKind = "all", + }, + }, --- disable the oxfmt lsp server since we use conform for formatting oxfmt = { enabled = false }, },