diff --git a/Makefile.toml b/Makefile.toml index 776abe3df8d..43460966720 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -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", ] diff --git a/tools/scripts/tidy.toml b/tools/scripts/tidy.toml index c7cbc616443..d295c63aa88 100644 --- a/tools/scripts/tidy.toml +++ b/tools/scripts/tidy.toml @@ -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"