nvim/pack/acp/opt/nvim-lspconfig/lua/lspconfig/server_configurations/tflint.lua

21 lines
565 B
Lua
Raw Normal View History

2022-01-10 11:08:46 +00:00
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'tflint', '--langserver' },
filetypes = { 'terraform' },
root_dir = util.root_pattern('.terraform', '.git', '.tflint.hcl'),
},
docs = {
description = [[
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.
]],
default_config = {
root_dir = [[root_pattern(".terraform", ".git", ".tflint.hcl")]],
},
},
}