Use the LazyVim oxc extra instead of hand-rolled oxlint config

The oxlint LSP now enables type-aware linting on its own when tsgolint is
present and .oxlintrc.json mentions typescript, and ships :LspOxlintFixAll --
which is what the oxlint_fix function reimplemented by shelling out to the CLI.
The extra also sets fixKind = "all" and prefers the top-level oxlint config in
monorepos. Fixes now apply as a workspace edit instead of writing to disk and
reloading.

oxfmt takes js/ts/json/vue over prettier; prettier keeps css/html/yaml/markdown.
Add oxlint to mason so it resolves outside projects with a local install.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 13:18:30 -04:00
co-authored by Claude Opus 5
parent 76cdb9d1f6
commit 995ecb11d3
5 changed files with 54 additions and 88 deletions
+24
View File
@@ -0,0 +1,24 @@
local oxfmt_owned = {
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"json",
"jsonc",
"vue",
}
return {
"stevearc/conform.nvim",
opts = function(_, opts)
opts.formatters_by_ft = opts.formatters_by_ft or {}
for _, ft in ipairs(oxfmt_owned) do
local formatters = opts.formatters_by_ft[ft]
if formatters then
opts.formatters_by_ft[ft] = vim.tbl_filter(function(formatter)
return formatter ~= "prettier"
end, formatters)
end
end
end,
}
-9
View File
@@ -1,16 +1,7 @@
return {
"mfussenegger/nvim-lint",
opts = {
linters_by_ft = {
javascript = { "oxlint" },
typescript = { "oxlint" },
javascriptreact = { "oxlint" },
typescriptreact = { "oxlint" },
},
linters = {
oxlint = {
prepend_args = { "--type-aware" },
},
["markdownlint-cli2"] = {
prepend_args = {
"--config",
+29 -20
View File
@@ -1,25 +1,34 @@
return {
"neovim/nvim-lspconfig",
opts = {
diagnostics = {
virtual_text = false,
virtual_lines = { current_line = true },
},
servers = {
clangd = {
-- removing .proto from the list of filetypes since clangd doesn't seem to be able to parse them
filetypes = { "c", "cpp", "objc", "objcpp", "cuda" },
{
"neovim/nvim-lspconfig",
opts = {
diagnostics = {
virtual_text = false,
virtual_lines = { current_line = true },
},
servers = {
clangd = {
-- removing .proto from the list of filetypes since clangd doesn't seem to be able to parse them
filetypes = { "c", "cpp", "objc", "objcpp", "cuda" },
},
oxlint = {
keys = {
{ "<leader>cx", "<cmd>LspOxlintFixAll<cr>", desc = "Oxlint Fix All" },
},
},
},
-- Disable eslint formatting as it's slow and timing out on big projects
-- taken from
-- https://github.com/LazyVim/LazyVim/pull/4225/files
setup = {
eslint = function()
return
end,
},
-- Disable oxlint LSP - using nvim-lint with CLI instead for type-aware support
oxlint = { enabled = false },
},
-- Disable eslint formatting as it's slow and timing out on big projects
-- taken from
-- https://github.com/LazyVim/LazyVim/pull/4225/files
setup = {
eslint = function()
return
end,
},
},
{
"mason-org/mason.nvim",
opts = { ensure_installed = { "oxlint" } },
},
}