github.com/jpreese/tflint@v0.19.2-0.20200908152133-b01686250fb6/tflint/meta.go (about)

     1  package tflint
     2  
     3  import "fmt"
     4  
     5  // Version is application version
     6  const Version string = "0.19.1"
     7  
     8  // ReferenceLink returns the rule reference link
     9  func ReferenceLink(name string) string {
    10  	return fmt.Sprintf("https://github.com/terraform-linters/tflint/blob/v%s/docs/rules/%s.md", Version, name)
    11  }