chore: initial commit for asepharyana-hub-scraper

This commit is contained in:
asepharyana
2026-07-09 22:07:03 +07:00
commit 80c96eaa42
190 changed files with 28465 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
# Auto-fix warnings and lint Rust code
set -e
echo "🔧 Auto-fixing Rust warnings and linting..."
# Format code
echo "📝 Running rustfmt..."
cargo fmt
# Fix clippy warnings automatically
echo "🔍 Running clippy auto-fix..."
cargo clippy --fix --allow-dirty --allow-staged --all-targets
# Check for remaining issues
echo "✅ Running final check..."
cargo clippy --all-targets -- -D warnings
echo "✨ Done! Code is formatted and linted."