feat: add Clippy alias commands and improve build process for Clippy integration (#5055)

* feat: add Clippy alias commands and improve build process for Clippy integration

* fix(lint-clippy): update Clippy run command to use working directory for src-tauri
This commit is contained in:
Tunglies
2025-10-14 14:43:03 +08:00
committed by GitHub
Unverified
parent 76ca24086b
commit 4dd811330b
5 changed files with 29 additions and 26 deletions

View File

@@ -3,3 +3,7 @@ linker = "aarch64-linux-gnu-gcc"
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"
[alias]
clippy-all = "clippy --all-targets --all-features -- -D warnings"
clippy-only = "clippy --all-targets --features clippy -- -D warnings"