A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add pre-commit hook for rustfmt and clippy

Trezy 78592592 683cb503

+15
+15
scripts/pre-commit
··· 1 + #!/bin/sh 2 + 3 + # Run rustfmt check 4 + cargo fmt -- --check 5 + if [ $? -ne 0 ]; then 6 + echo "rustfmt check failed. Run 'cargo fmt' to fix." 7 + exit 1 8 + fi 9 + 10 + # Run clippy 11 + cargo clippy --all-targets -- -D warnings 12 + if [ $? -ne 0 ]; then 13 + echo "clippy check failed. Fix the warnings above." 14 + exit 1 15 + fi