From e4ee7538998669c7d6bbc5b6d2b72d20f8472fa7 Mon Sep 17 00:00:00 2001 From: Dennis Date: Mon, 2 Jun 2025 10:21:05 +0200 Subject: [PATCH] Removes eslint lsp --- modules/nvim/config/lsp/eslint.lua | 160 --------------------------- modules/nvim/config/lua/dnsc/lsp.lua | 1 - 2 files changed, 161 deletions(-) delete mode 100644 modules/nvim/config/lsp/eslint.lua diff --git a/modules/nvim/config/lsp/eslint.lua b/modules/nvim/config/lsp/eslint.lua deleted file mode 100644 index 1f76d5b..0000000 --- a/modules/nvim/config/lsp/eslint.lua +++ /dev/null @@ -1,160 +0,0 @@ -local lsp = vim.lsp - -local function validate_bufnr(bufnr) - if nvim_eleven then - validate("bufnr", bufnr, "number") - end - return bufnr == 0 and api.nvim_get_current_buf() or bufnr -end - -local function fix_all(opts) - opts = opts or {} - - local eslint_lsp_client = vim.lsp.get_clients({ bufnr = opts.bufnr, name = "eslint" })[1] - if eslint_lsp_client == nil then - return - end - - local request - if opts.sync then - request = function(bufnr, method, params) - eslint_lsp_client.request_sync(method, params, nil, bufnr) - end - else - request = function(bufnr, method, params) - eslint_lsp_client.request(method, params, nil, bufnr) - end - end - - local bufnr = util.validate_bufnr(opts.bufnr or 0) - request(0, "workspace/executeCommand", { - command = "eslint.applyAllFixes", - arguments = { - { - uri = vim.uri_from_bufnr(bufnr), - version = lsp.util.buf_versions[bufnr], - }, - }, - }) -end - -return { - cmd = { "vscode-eslint-language-server", "--stdio" }, - filetypes = { - "javascript", - "javascriptreact", - "javascript.jsx", - "typescript", - "typescriptreact", - "typescript.tsx", - "vue", - "svelte", - "astro", - }, - root_markers = { - ".eslintrc", - ".eslintrc.js", - ".eslintrc.cjs", - ".eslintrc.yaml", - ".eslintrc.yml", - ".eslintrc.json", - "eslint.config.js", - "eslint.config.mjs", - "eslint.config.cjs", - "eslint.config.ts", - "eslint.config.mts", - "eslint.config.cts", - }, - commands = { - EslintFixAll = { - function() - fix_all({ sync = true, bufnr = 0 }) - end, - description = "Fix all eslint problems for this buffer", - }, - }, - settings = { - validate = "on", - packageManager = nil, - useESLintClass = false, - experimental = { - useFlatConfig = false, - }, - codeActionOnSave = { - enable = true, - mode = "all", - }, - format = true, - quiet = false, - onIgnoredFiles = "off", - rulesCustomizations = {}, - run = "onType", - problems = { - shortenToSingleLine = false, - }, - -- nodePath configures the directory in which the eslint server should start its node_modules resolution. - -- This path is relative to the workspace folder (root dir) of the server instance. - nodePath = "", - -- use the workspace folder location or the file location (if no workspace folder is open) as the working directory - workingDirectory = { mode = "location" }, - codeAction = { - disableRuleComment = { - enable = true, - location = "separateLine", - }, - showDocumentation = { - enable = true, - }, - }, - }, - on_new_config = function(config, new_root_dir) - -- The "workspaceFolder" is a VSCode concept. It limits how far the - -- server will traverse the file system when locating the ESLint config - -- file (e.g., .eslintrc). - config.settings.workspaceFolder = { - uri = new_root_dir, - name = vim.fn.fnamemodify(new_root_dir, ":t"), - } - - -- Support flat config - if - vim.fn.filereadable(new_root_dir .. "/eslint.config.js") == 1 - or vim.fn.filereadable(new_root_dir .. "/eslint.config.mjs") == 1 - or vim.fn.filereadable(new_root_dir .. "/eslint.config.cjs") == 1 - or vim.fn.filereadable(new_root_dir .. "/eslint.config.ts") == 1 - or vim.fn.filereadable(new_root_dir .. "/eslint.config.mts") == 1 - or vim.fn.filereadable(new_root_dir .. "/eslint.config.cts") == 1 - then - config.settings.experimental.useFlatConfig = true - end - - -- Support Yarn2 (PnP) projects - local pnp_cjs = new_root_dir .. "/.pnp.cjs" - local pnp_js = new_root_dir .. "/.pnp.js" - if vim.loop.fs_stat(pnp_cjs) or vim.loop.fs_stat(pnp_js) then - config.cmd = vim.list_extend({ "yarn", "exec" }, config.cmd) - end - end, - handlers = { - ["eslint/openDoc"] = function(_, result) - if result then - vim.ui.open(result.url) - end - return {} - end, - ["eslint/confirmESLintExecution"] = function(_, result) - if not result then - return - end - return 4 -- approved - end, - ["eslint/probeFailed"] = function() - vim.notify("[lspconfig] ESLint probe failed.", vim.log.levels.WARN) - return {} - end, - ["eslint/noLibrary"] = function() - vim.notify("[lspconfig] Unable to find ESLint library.", vim.log.levels.WARN) - return {} - end, - }, -} diff --git a/modules/nvim/config/lua/dnsc/lsp.lua b/modules/nvim/config/lua/dnsc/lsp.lua index 14c1cc3..f847b6b 100644 --- a/modules/nvim/config/lua/dnsc/lsp.lua +++ b/modules/nvim/config/lua/dnsc/lsp.lua @@ -1,6 +1,5 @@ vim.lsp.enable("ts_ls") vim.lsp.enable("lua_ls") -vim.lsp.enable("eslint") vim.lsp.enable("jsonls") vim.lsp.enable("nil_ls")