mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 09:48:59 +02:00
fix(docker): put hadolint in its own spec
This commit is contained in:
parent
31d913697b
commit
718c5c6036
1 changed files with 7 additions and 7 deletions
|
@ -7,6 +7,13 @@ return {
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mason.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
opts.ensure_installed = opts.ensure_installed or {}
|
||||||
|
vim.list_extend(opts.ensure_installed, { "hadolint" })
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"nvimtools/none-ls.nvim",
|
"nvimtools/none-ls.nvim",
|
||||||
optional = true,
|
optional = true,
|
||||||
|
@ -17,13 +24,6 @@ return {
|
||||||
nls.builtins.diagnostics.hadolint,
|
nls.builtins.diagnostics.hadolint,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
dependencies = {
|
|
||||||
"mason.nvim",
|
|
||||||
opts = function(_, opts)
|
|
||||||
opts.ensure_installed = opts.ensure_installed or {}
|
|
||||||
vim.list_extend(opts.ensure_installed, { "hadolint" })
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"mfussenegger/nvim-lint",
|
"mfussenegger/nvim-lint",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue