mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 06:27:14 +01:00
25 lines
761 B
Lua
25 lines
761 B
Lua
return {
|
|
'mfussenegger/nvim-lint',
|
|
event = { 'BufReadPre', 'BufNewFile' },
|
|
config = function()
|
|
local lint = require 'lint'
|
|
lint.linters_by_ft = {
|
|
make = { 'checkmake' },
|
|
javascript = { 'eslint' },
|
|
javascriptreact = { 'eslint' },
|
|
typescript = { 'eslint' },
|
|
typescriptreact = { 'eslint' },
|
|
}
|
|
|
|
-- Create autocommand which carries out the actual linting
|
|
-- on the specified events.
|
|
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
|
|
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
|
|
group = lint_augroup,
|
|
callback = function()
|
|
if vim.bo.modifiable then lint.try_lint(nil, { ignore_errors = false }) end
|
|
end,
|
|
})
|
|
end,
|
|
}
|