nvim/lua/plugins/nvim-lint.lua
sudacode 9c083c98a3
update config to lazy
- add some new plugins
- remove some old ones
- clean up/update some configs
2025-02-16 01:47:35 -08:00

15 lines
322 B
Lua

return {
"mfussenegger/nvim-lint",
config = function()
require("lint").linters_by_ft = {
markdown = { "markdownlint" },
lua = { "luacheck" },
py = { "pylint", "pydocstyle", "pycodestyle", "mypy" },
sh = { "shellcheck" },
json = { "jsonlint" },
yaml = { "yamllint" },
vim = { "vint" },
}
end,
}