nvim/lua/plugins/nvim-lint.lua
2025-04-10 21:57:59 -07:00

15 lines
332 B
Lua

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