github.com/jpreese/tflint@v0.19.2-0.20200908152133-b01686250fb6/docs/guides/annotations.md (about)

     1  # Annotations
     2  
     3  Annotation comments can disable rules on specific lines:
     4  
     5  ```hcl
     6  resource "aws_instance" "foo" {
     7      # tflint-ignore: aws_instance_invalid_type
     8      instance_type = "t1.2xlarge"
     9  }
    10  ```
    11  
    12  The annotation works only for the same line or the line below it. You can also use `tflint-ignore: all` if you want to ignore all the rules.
    13  
    14  See also [list of available rules](../rules).