mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 15:31:05 +01:00
14 lines
394 B
Lua
14 lines
394 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/terraform-linters/tflint
|
|
---
|
|
--- A pluggable Terraform linter that can act as lsp server.
|
|
--- Installation instructions can be found in https://github.com/terraform-linters/tflint#installation.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'tflint', '--langserver' },
|
|
filetypes = { 'terraform' },
|
|
root_markers = { '.terraform', '.git', '.tflint.hcl' },
|
|
}
|