dotfiles/dot_config/nvim/lua/plugins/nvim-lint.lua

13 lines
198 B
Lua
Raw Normal View History

2024-04-14 18:41:15 -07:00
return {
{
"mfussenegger/nvim-lint",
opts = {
linters_by_ft = {
yaml = { "yamllint" },
bash = { "shellcheck" },
sh = { "shellcheck" },
},
},
},
}