19 lines
286 B
Lua
19 lines
286 B
Lua
return {
|
|
"mfussenegger/nvim-lint",
|
|
|
|
keys = {
|
|
{
|
|
"<leader>L",
|
|
function()
|
|
require("lint").try_lint()
|
|
end,
|
|
desc = " [L]int file",
|
|
},
|
|
},
|
|
|
|
config = function()
|
|
require("lint").linters_by_ft = {
|
|
sh = { "shellcheck" },
|
|
}
|
|
end,
|
|
}
|