mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-01 23:19:25 +00:00
[neovim] Add revive golang linter
This commit is contained in:
@ -8,15 +8,24 @@ local formatting = null_ls.builtins.formatting
|
||||
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
||||
local diagnostics = null_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
|
||||
|
||||
null_ls.setup({
|
||||
debug = false,
|
||||
sources = {
|
||||
formatting.black.with({ extra_args = { "--fast" } }),
|
||||
formatting.black.with({
|
||||
extra_args = { "--fast" },
|
||||
}),
|
||||
formatting.stylua,
|
||||
formatting.prettier,
|
||||
-- diagnostics.golangci_lint.with({ extra_args = { "--fast" } }),
|
||||
diagnostics.cfn_lint,
|
||||
diagnostics.hadolint,
|
||||
diagnostics.markdownlint,
|
||||
diagnostics.revive.with({
|
||||
args = revive_args,
|
||||
}),
|
||||
},
|
||||
})
|
||||
|
Reference in New Issue
Block a user