blob: e5837992169fef810885dc38e7a3ed691855b0be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
---@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.
return {
cmd = { 'tflint', '--langserver' },
filetypes = { 'terraform' },
root_markers = { '.terraform', '.git', '.tflint.hcl' },
}
|