mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 14:37:15 +01:00
fix linting
This commit is contained in:
@@ -11,6 +11,11 @@ return {
|
|||||||
typescriptreact = { 'eslint_d' },
|
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
|
-- Create autocommand which carries out the actual linting
|
||||||
-- on the specified events.
|
-- on the specified events.
|
||||||
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
|
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
|
-- Only run the linter in buffers that you can modify in order to
|
||||||
-- avoid superfluous noise, notably within the handy LSP pop-ups that
|
-- avoid superfluous noise, notably within the handy LSP pop-ups that
|
||||||
-- describe the hovered symbol using Markdown.
|
-- 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,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|||||||
Reference in New Issue
Block a user