-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile.toml
More file actions
32 lines (27 loc) · 664 Bytes
/
Makefile.toml
File metadata and controls
32 lines (27 loc) · 664 Bytes
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
26
27
28
29
30
31
32
[tasks.watch-test]
install_crate = "cargo-watch"
command = "cargo"
args = ["watch", "-x", "test", ]
[tasks.format]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--all", "--", "--check"]
[tasks.clippy]
install_crate = "cargo-clippy"
command = "cargo"
args = ["clippy"]
[tasks.clippy-z]
install_crate = "cargo-clippy"
toolchain = "nightly"
command = "cargo"
args = ["clippy", "-Z", "unstable-options"]
[tasks.clippy-pedantic]
install_crate = "cargo-clippy"
command = "cargo"
args = ["clippy", "--all", "--", "-D", "clippy::pedantic", "-D", "clippy::nursery", "-D", "warnings"]
[tasks.all]
dependencies = [
"format",
"clippy",
"test"
]