diff options
author | Keith Maxwell <keith.maxwell@gmail.com> | 2019-05-23 14:12:36 +0100 |
---|---|---|
committer | Keith Maxwell <keith.maxwell@gmail.com> | 2019-05-23 15:49:02 +0100 |
commit | 88fa0b9294c6e907e8e2e8bee2ca593dff91b473 (patch) | |
tree | 5e094c3c5b45f2137ce821a93a86a3a6653ded01 /doc | |
parent | 1a9b8a58c7e01f0926e51b39b7b37f932537cc0c (diff) | |
download | ale-88fa0b9294c6e907e8e2e8bee2ca593dff91b473.zip |
Add a terraform linter
This linter uses the check functionality built into terraform. ALE
already has a fixer using `terraform fmt` but this doesn't provide error
messages. ALE already has a linter using `tflint` but this requires an
extra application to be installed.
For example this linter will give a warning that ! is an illegal
character in the line below:
variable "example" !{}
This linter runs the buffer through the command below and parses the
output:
terraform fmt -no-color -check=true -
This commit includes a basic implementation, documentation and tests.
The only option is to control which executable is run.
Tested with:
$ terraform -version
Terraform v0.11.13
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-hcl.txt | 2 | ||||
-rw-r--r-- | doc/ale-terraform.txt | 14 | ||||
-rw-r--r-- | doc/ale.txt | 3 |
3 files changed, 16 insertions, 3 deletions
diff --git a/doc/ale-hcl.txt b/doc/ale-hcl.txt index 8060ac44..59b0a9da 100644 --- a/doc/ale-hcl.txt +++ b/doc/ale-hcl.txt @@ -5,7 +5,7 @@ ALE HCL Integration *ale-hcl-options* =============================================================================== terraform-fmt *ale-hcl-terraform-fmt* -See |ale-terraform-fmt| for information about the available options. +See |ale-terraform-fmt-fixer| for information about the available options. =============================================================================== vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: diff --git a/doc/ale-terraform.txt b/doc/ale-terraform.txt index 49a55028..387fd732 100644 --- a/doc/ale-terraform.txt +++ b/doc/ale-terraform.txt @@ -3,7 +3,7 @@ ALE Terraform Integration *ale-terraform-options* =============================================================================== -fmt *ale-terraform-fmt* +terraform-fmt-fixer *ale-terraform-fmt-fixer* g:ale_terraform_fmt_executable *g:ale_terraform_fmt_executable* *b:ale_terraform_fmt_executable* @@ -21,6 +21,18 @@ g:ale_terraform_fmt_options *g:ale_terraform_fmt_options* =============================================================================== +terraform *ale-terraform-terraform* + +g:ale_terraform_terraform_executable *g:ale_terraform_terraform_executable* + *b:ale_terraform_terraform_executable* + + Type: |String| + Default: `'terraform'` + + This variable can be changed to use a different executable for terraform. + + +=============================================================================== tflint *ale-terraform-tflint* g:ale_terraform_tflint_executable *g:ale_terraform_tflint_executable* diff --git a/doc/ale.txt b/doc/ale.txt index 4bb34947..6b051d3c 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -2246,7 +2246,8 @@ documented in additional help files. tcl.....................................|ale-tcl-options| nagelfar..............................|ale-tcl-nagelfar| terraform...............................|ale-terraform-options| - fmt...................................|ale-terraform-fmt| + terraform-fmt-fixer...................|ale-terraform-fmt-fixer| + terraform.............................|ale-terraform-terraform| tflint................................|ale-terraform-tflint| tex.....................................|ale-tex-options| chktex................................|ale-tex-chktex| |