* 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
10 lines
289 B
TOML
10 lines
289 B
TOML
[target.aarch64-unknown-linux-gnu]
|
|
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"
|