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

     1  package fmts
     2  
     3  func init() {
     4  	const lang = "yaml"
     5  
     6  	register(&Fmt{
     7  		Name: "yamllint",
     8  		Errorformat: []string{
     9  			`%f:%l:%c: %m`,
    10  		},
    11  		Description: "(yamllint -f parsable) A linter for YAML files",
    12  		URL:         "https://github.com/adrienverge/yamllint",
    13  		Language:    lang,
    14  	})
    15  }