From 0cbf4dc5c8ab13cbc4a4b992a3e181ed901a94ff Mon Sep 17 00:00:00 2001 From: Zeke Foppa <196249+bfops@users.noreply.github.com> Date: Tue, 21 Apr 2026 14:19:00 -0500 Subject: [PATCH] Add `cargo lint` as alias for `cargo ci lint` (#4853) # Description of Changes Just a one-line alias as requested # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing `cargo lint` properly runs `cargo ci lint`. Co-authored-by: Zeke Foppa --- .cargo/config.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 949d1ed00..486476765 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -7,6 +7,7 @@ llm = "run --package xtask-llm-benchmark --bin llm_benchmark --" ci = "run -p ci --" smoketest = "ci smoketests --" smoketests = "smoketest" +lint = "ci lint --" [target.x86_64-pc-windows-msvc] # Use a different linker. Otherwise, the build fails with some obscure linker error that