From efccd6ed5063dac4ad5dee38f7c4ff0a25f78276 Mon Sep 17 00:00:00 2001 From: futile Date: Sat, 13 Sep 2025 16:58:52 +0100 Subject: [PATCH] update readme --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/justfile b/justfile index 944a730..aaf7dbc 100644 --- a/justfile +++ b/justfile @@ -4,3 +4,12 @@ install: cargo build --release cp .\target\release\gta-tools.exe ~\.cargo\bin cp .\target\release\gta-tools.exe ~\Documents + +lint: + cargo clippy -- -W clippy::pedantic -W clippy::nursery -A clippy::cast_sign_loss -A clippy::cast_possible_truncation -A clippy::cast_possible_wrap + +lint-full: + cargo clippy -- -W clippy::pedantic -W clippy::nursery -W clippy::unwrap_used + +lint-unwraps: + cargo clippy -- -W clippy::unwrap_used \ No newline at end of file