mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-10 06:11:12 +00:00
22 lines
584 B
Lua
22 lines
584 B
Lua
local none_ls = require("null-ls")
|
|
-- https://github.com/nvimtools/none-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
|
local diagnostics = none_ls.builtins.diagnostics
|
|
|
|
local revive_conf = vim.fn.findfile(os.getenv("HOME") .. "/.revive.toml")
|
|
local revive_args = { "-formatter", "json", "./..." }
|
|
if revive_conf then
|
|
revive_args = { "-formatter", "json", "-config", revive_conf, "./..." }
|
|
end
|
|
|
|
none_ls.setup({
|
|
debug = false,
|
|
sources = {
|
|
diagnostics.hadolint,
|
|
diagnostics.markdownlint,
|
|
diagnostics.revive.with({
|
|
args = revive_args,
|
|
}),
|
|
diagnostics.cfn_lint,
|
|
},
|
|
})
|