aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/tflint.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/server_configurations/tflint.lua')
-rw-r--r--lua/lspconfig/server_configurations/tflint.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/tflint.lua b/lua/lspconfig/server_configurations/tflint.lua
new file mode 100644
index 00000000..6e83374c
--- /dev/null
+++ b/lua/lspconfig/server_configurations/tflint.lua
@@ -0,0 +1,20 @@
+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")]],
+ },
+ },
+}