1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
package fmts
func init() {
const lang = "protocolbuffer"
register(&Fmt{
Name: "protolint",
Errorformat: []string{
`[%f:%l:%c] %m`,
},
Description: "A pluggable linting utility for Protocol Buffer files",
URL: "https://github.com/yoheimuta/protolint",
Language: lang,
})
register(&Fmt{
Name: "buf",
Errorformat: []string{
`%f:%l:%c:%m`,
},
Description: "A new way of working with Protocol Buffers.",
URL: "https://github.com/bufbuild/buf",
Language: lang,
})
}
|