From ec58364ea72170becb72d2bec173dca8cea67c33 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Mon, 8 Sep 2025 15:31:17 +0200 Subject: [PATCH] fix linting --- lua/plugins/lint.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lint.lua b/lua/plugins/lint.lua index 5c4edd1..1ea7c03 100644 --- a/lua/plugins/lint.lua +++ b/lua/plugins/lint.lua @@ -11,6 +11,11 @@ return { typescriptreact = { 'eslint_d' }, } + -- Configure eslint_d to use current working directory as root + lint.linters.eslint_d.cwd = function() + return vim.fn.getcwd() + end + -- Create autocommand which carries out the actual linting -- on the specified events. local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true }) @@ -20,7 +25,7 @@ return { -- Only run the linter in buffers that you can modify in order to -- avoid superfluous noise, notably within the handy LSP pop-ups that -- describe the hovered symbol using Markdown. - if vim.bo.modifiable then lint.try_lint() end + if vim.bo.modifiable then lint.try_lint(nil, { ignore_errors = true }) end end, }) end,