aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/tflint.lua
blob: a58416e0ccc41c8750a488f6dc9d749b08e94139 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
local configs = require "lspconfig/configs"
local util = require "lspconfig/util"

configs.tflint = {
  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")]],
    },
  },
}
-- vim:et ts=2 sw=2