diff options
author | Canop <cano.petrole@gmail.com> | 2020-12-24 10:14:52 +0100 |
---|---|---|
committer | Canop <cano.petrole@gmail.com> | 2020-12-24 10:14:52 +0100 |
commit | a1af84b3a7723fe0106d5d99b70544a746a13e53 (patch) | |
tree | 28f5803dc2e3a15f60cd42b274721911cedeafc2 /bacon.toml | |
parent | 242f5f856a31ba645e06c2c58e6fc6715d787e83 (diff) |
version 1.1.0
Diffstat (limited to 'bacon.toml')
-rw-r--r-- | bacon.toml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/bacon.toml b/bacon.toml deleted file mode 100644 index 8bd8bfe..0000000 --- a/bacon.toml +++ /dev/null @@ -1,28 +0,0 @@ - -# This is a configuration file for the bacon tool -# More info at https://github.com/Canop/bacon - -default_job = "check" - -[jobs] - -[jobs.check] -command = ["cargo", "check", "--color", "always"] -need_stdout = false - -[jobs.clippy] -command = [ - "cargo", "clippy", - "--color", "always", - "--", - "-A", "clippy::match_like_matches_macro", - "-A", "clippy::collapsible_if", - "-A", "clippy::module_inception", - "-A", "clippy::comparison_chain", -] -need_stdout = false - -[jobs.test] -command = ["cargo", "test", "--color", "always"] -need_stdout = true - |