Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 785 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 785 Bytes

tf-lint

Static analysis libraries and tooling for Terraform Provider code.

It based on tfproviderlint

Usage

Checks

Check Description Type
h001 check for schema arguments that do not exist in Acceptance Test Checks. AST

Local Usage

To report issues, change into the directory of the Terraform Provider code and run:

tflinter ./...
tflinter -fields=name,enterprise_project_id ./...

It is also possible to run via go vet:

go vet -vettool $(which tflinter) ./...

Local Install Testing

go install ./cmd/tflinter