github.com/khulnasoft/codebase@v0.0.0-20231214144635-a707781cbb24/errorformat/fmts/haml.go (about)

     1  package fmts
     2  
     3  func init() {
     4  	const lang = "haml"
     5  
     6  	register(&Fmt{
     7  		Name: "haml-lint",
     8  		Errorformat: []string{
     9  			`%f:%l [%t] %m`,
    10  			`%-G%.%#`,
    11  		},
    12  		Description: "Tool for writing clean and consistent HAML",
    13  		URL:         "https://github.com/sds/haml-lint",
    14  		Language:    lang,
    15  	})
    16  }