Add lint fixer mode

This commit is contained in:
Andras Schmelczer 2025-10-18 21:31:03 +01:00
parent a3621b6d90
commit de143f9033
2 changed files with 29 additions and 5 deletions

View file

@ -2,11 +2,25 @@
set -e
# Parse arguments
FIX_MODE=false
if [[ "$1" == "--fix" ]]; then
FIX_MODE=true
echo "Running in fix mode - will automatically fix linting and formatting issues"
fi
echo "Running checks in sync-server"
cd sync-server
cargo test --verbose
cargo clippy --all-targets --all-features
cargo fmt --all -- --check
if [[ "$FIX_MODE" == true ]]; then
cargo clippy --all-targets --all-features --fix --allow-dirty --allow-staged
cargo fmt --all
else
cargo clippy --all-targets --all-features
cargo fmt --all -- --check
fi
cargo machete
echo "Running checks in frontend"
@ -16,7 +30,7 @@ npm run build
npm run test
npm run lint
if [[ $(git status --porcelain) ]]; then
if [[ "$FIX_MODE" == false ]] && [[ $(git status --porcelain) ]]; then
git status --porcelain
echo "Failing CI because the working directory is not clean after linting"
exit 1