github.com/wata727/tflint@v0.12.2-0.20191013070026-96dd0d36f385/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).