github.com/terraform-linters/tflint-plugin-sdk@v0.22.0/terraform/config.go (about)

     1  package terraform
     2  
     3  import "strings"
     4  
     5  // IsJSONFilename returns true if the filename is a JSON syntax file.
     6  func IsJSONFilename(filename string) bool {
     7  	return strings.HasSuffix(filename, ".tf.json")
     8  }