update plugins

This commit is contained in:
2025-05-01 21:18:16 -07:00
parent 95089a5a57
commit a8f250f96b
3 changed files with 15 additions and 0 deletions

View File

@@ -9,6 +9,16 @@ return {
json = { "jsonlint" },
yaml = { "yamllint" },
vim = { "vint" },
go = { "golangci_lint" },
}
local shellcheck = require("lint").linters.shellcheck
shellcheck.args = {
"-s",
"bash",
"-o",
"all",
"-e",
"2250",
}
end,
}