From b7ef29a8886a57aadb787807a7c6cf74c1f0ed3a Mon Sep 17 00:00:00 2001 From: anand Date: Wed, 17 Dec 2025 15:57:55 +0530 Subject: Nixos --- nvim/lsp/oxlint.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 nvim/lsp/oxlint.lua (limited to 'nvim/lsp/oxlint.lua') diff --git a/nvim/lsp/oxlint.lua b/nvim/lsp/oxlint.lua new file mode 100755 index 0000000..67928f1 --- /dev/null +++ b/nvim/lsp/oxlint.lua @@ -0,0 +1,30 @@ +--- @brief +--- +--- https://github.com/oxc-project/oxc +--- +--- `oxc` is a linter / formatter for JavaScript / Typescript supporting over 500 rules from ESLint and its popular plugins +--- It can be installed via `npm`: +--- +--- ```sh +--- npm i -g oxlint +--- ``` + +local util = require 'lspconfig.util' + +return { + cmd = { 'oxc_language_server' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + }, + workspace_required = true, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local root_markers = util.insert_package_json({ '.oxlintrc.json' }, 'oxlint', fname) + on_dir(vim.fs.dirname(vim.fs.find(root_markers, { path = fname, upward = true })[1])) + end, +} -- cgit v1.2.3