updates eslint lsp

This commit is contained in:
Dennis 2025-05-30 09:57:20 +02:00
parent ec65e4fdf6
commit 485abbfda4

View file

@ -2,7 +2,7 @@ local lsp = vim.lsp
local function validate_bufnr(bufnr)
if nvim_eleven then
validate('bufnr', bufnr, 'number')
validate("bufnr", bufnr, "number")
end
return bufnr == 0 and api.nvim_get_current_buf() or bufnr
end
@ -10,7 +10,7 @@ end
local function fix_all(opts)
opts = opts or {}
local eslint_lsp_client = vim.lsp.get_clients({ bufnr = opts.bufnr, name = 'eslint' })[1]
local eslint_lsp_client = vim.lsp.get_clients({ bufnr = opts.bufnr, name = "eslint" })[1]
if eslint_lsp_client == nil then
return
end
@ -27,8 +27,8 @@ local function fix_all(opts)
end
local bufnr = util.validate_bufnr(opts.bufnr or 0)
request(0, 'workspace/executeCommand', {
command = 'eslint.applyAllFixes',
request(0, "workspace/executeCommand", {
command = "eslint.applyAllFixes",
arguments = {
{
uri = vim.uri_from_bufnr(bufnr),
@ -39,42 +39,42 @@ local function fix_all(opts)
end
return {
cmd = { 'vscode-eslint-language-server', '--stdio' },
cmd = { "vscode-eslint-language-server", "--stdio" },
filetypes = {
'javascript',
'javascriptreact',
'javascript.jsx',
'typescript',
'typescriptreact',
'typescript.tsx',
'vue',
'svelte',
'astro',
"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',
".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 }
fix_all({ sync = true, bufnr = 0 })
end,
description = 'Fix all eslint problems for this buffer',
description = "Fix all eslint problems for this buffer",
},
},
settings = {
validate = 'on',
validate = "on",
packageManager = nil,
useESLintClass = false,
experimental = {
@ -82,25 +82,25 @@ return {
},
codeActionOnSave = {
enable = true,
mode = 'all',
mode = "all",
},
format = true,
quiet = false,
onIgnoredFiles = 'off',
onIgnoredFiles = "off",
rulesCustomizations = {},
run = 'onType',
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 = '',
nodePath = "",
-- use the workspace folder location or the file location (if no workspace folder is open) as the working directory
workingDirectory = { mode = 'location' },
workingDirectory = { mode = "location" },
codeAction = {
disableRuleComment = {
enable = true,
location = 'separateLine',
location = "separateLine",
},
showDocumentation = {
enable = true,
@ -113,47 +113,47 @@ return {
-- file (e.g., .eslintrc).
config.settings.workspaceFolder = {
uri = new_root_dir,
name = vim.fn.fnamemodify(new_root_dir, ':t'),
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
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'
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)
config.cmd = vim.list_extend({ "yarn", "exec" }, config.cmd)
end
end,
handlers = {
['eslint/openDoc'] = function(_, result)
["eslint/openDoc"] = function(_, result)
if result then
vim.ui.open(result.url)
end
return {}
end,
['eslint/confirmESLintExecution'] = function(_, result)
["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)
["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)
["eslint/noLibrary"] = function()
vim.notify("[lspconfig] Unable to find ESLint library.", vim.log.levels.WARN)
return {}
end,
},