refactor(nvim): do not show diags for shellcheck in null-ls

We already use the `bashls` language server that shows diags from
`shellcheck`. Mainly we want some additional code actions from `null-ls` for
`shellcheck` as `bashls` doesn't expose everything.
This commit is contained in:
Price Hiller 2023-06-16 12:32:54 -05:00
parent e78219d32c
commit b785d18522
No known key found for this signature in database

View File

@ -5,7 +5,6 @@ null_ls.setup({
null_ls.builtins.formatting.shfmt.with({
extra_args = { "-i 4" },
}),
null_ls.builtins.diagnostics.shellcheck,
null_ls.builtins.code_actions.shellcheck,
null_ls.builtins.diagnostics.hadolint,
null_ls.builtins.code_actions.refactoring,