Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cargo quick #826

Merged
merged 2 commits into from
Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ description = "Run quick version of all lints and tests"
category = "ICU4X Development"
dependencies = [
"test-all-features",
"fmt-check",
"tidy",
"clippy-all",
"tidy-minus-fmt",
"test-ffi",
"test-cppdoc",
]
Expand Down
6 changes: 6 additions & 0 deletions tools/scripts/tidy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

# This is a cargo-make file included in the toplevel Makefile.toml

[tasks.clippy-all]
description = "Run clippy based on the alias in /.cargo/config.toml"
category = "ICU4X Development"
command = "cargo"
args = ["clippy-all"]

[tasks.fmt-check]
description = "Check code is appropriately formatted"
category = "ICU4X Development"
Expand Down