1
2# This is a configuration file for the bacon tool
3# More info at https://github.com/Canop/bacon
4
5default_job = "check"
6
7[jobs]
8
9[jobs.check]
10command = ["cargo", "check", "--tests", "--color", "always"]
11need_stdout = false
12
13[jobs.light]
14command = ["cargo", "check", "--color", "always"]
15need_stdout = false
16
17[jobs.clippy]
18command = [
19	"cargo", "clippy",
20	"--color", "always",
21	"--",
22	"-A", "clippy::match_like_matches_macro",
23	"-A", "clippy::collapsible_if",
24	"-A", "clippy::module_inception",
25]
26need_stdout = false
27
28[jobs.test]
29command = ["cargo", "test", "--color", "always"]
30need_stdout = true
31
32