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 = "rust"
register(&Fmt{
Name: "cargo-check",
Errorformat: []string{
`%f:%l:%c: %m`,
},
Description: "(cargo check -q --message-format=short) Check a local package and all of its dependencies for errors",
URL: "https://github.com/rust-lang/cargo",
Language: lang,
})
register(&Fmt{
Name: "clippy",
Errorformat: []string{
`%f:%l:%c: %m`,
},
Description: "(cargo clippy -q --message-format=short) A bunch of lints to catch common mistakes and improve your Rust code",
URL: "https://github.com/rust-lang/rust-clippy",
Language: lang,
})
}
|