nvim: Remove terraform lint
Linting is also done by the LSP so we double up our error messages.
This commit is contained in:
parent
ecf28787b6
commit
1970dc9dbd
1 changed files with 4 additions and 1 deletions
|
|
@ -117,7 +117,10 @@ local languages = {
|
||||||
sh = { lint = { sh = { "shellcheck" } }, format = { sh = { "shellharden", "shfmt" } } },
|
sh = { lint = { sh = { "shellcheck" } }, format = { sh = { "shellharden", "shfmt" } } },
|
||||||
sql = { format = { sql = { "sleek" } }, lint = { sql = { "sqruff" } } },
|
sql = { format = { sql = { "sleek" } }, lint = { sql = { "sqruff" } } },
|
||||||
svelte = { lint = { svelte = { "eslint_d" } }, format = { svelte = { "prettier" } } },
|
svelte = { lint = { svelte = { "eslint_d" } }, format = { svelte = { "prettier" } } },
|
||||||
terraform = { lint = { terraform = { "tflint" } }, lsp = { tofu_ls = {} }, format = { terraform = { "tofu_fmt" } } },
|
terraform = {
|
||||||
|
lsp = { tofu_ls = {} },
|
||||||
|
format = { terraform = { "terraform_fmt" } },
|
||||||
|
},
|
||||||
toml = { lsp = { taplo = {} }, ts = { "toml" } },
|
toml = { lsp = { taplo = {} }, ts = { "toml" } },
|
||||||
typescript = {
|
typescript = {
|
||||||
lsp = { ts_ls = {} },
|
lsp = { ts_ls = {} },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue