2024-03-18 14:00:48 +00:00
|
|
|
return {
|
|
|
|
|
|
|
|
{ -- Linting
|
|
|
|
'mfussenegger/nvim-lint',
|
|
|
|
event = { 'BufReadPre', 'BufNewFile' },
|
|
|
|
config = function()
|
|
|
|
local lint = require 'lint'
|
|
|
|
lint.linters_by_ft = {
|
2024-03-27 10:24:28 +00:00
|
|
|
javascript = { 'eslint' },
|
|
|
|
typescript = { 'eslint' },
|
2024-03-18 14:00:48 +00:00
|
|
|
markdown = { 'markdownlint' },
|
|
|
|
}
|
|
|
|
|
|
|
|
-- 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()
|
|
|
|
require('lint').try_lint()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|