forked from kemitix/git-next
chore: bacon treats clippy warnings as errors
This commit is contained in:
parent
d9feaeaa7b
commit
56756cab70
1 changed files with 9 additions and 1 deletions
10
bacon.toml
10
bacon.toml
|
@ -24,7 +24,15 @@ command = ["cargo", "check", "--all-targets", "--color", "always"]
|
||||||
need_stdout = false
|
need_stdout = false
|
||||||
|
|
||||||
[jobs.clippy]
|
[jobs.clippy]
|
||||||
command = ["cargo", "clippy", "--all-targets", "--color", "always"]
|
command = [
|
||||||
|
"cargo",
|
||||||
|
"clippy",
|
||||||
|
"--all-targets",
|
||||||
|
"--color",
|
||||||
|
"always",
|
||||||
|
"--",
|
||||||
|
"-Dwarnings",
|
||||||
|
]
|
||||||
need_stdout = false
|
need_stdout = false
|
||||||
|
|
||||||
[jobs.test]
|
[jobs.test]
|
||||||
|
|
Loading…
Reference in a new issue