A lexicon-driven AppView for ATProto.
happyview.dev
backfill
firehose
jetstream
atproto
appview
oauth
lexicon
1#!/bin/sh
2
3# Run rustfmt check
4cargo fmt -- --check
5if [ $? -ne 0 ]; then
6 echo "rustfmt check failed. Run 'cargo fmt' to fix."
7 exit 1
8fi
9
10# Run clippy
11cargo clippy --all-targets -- -D warnings
12if [ $? -ne 0 ]; then
13 echo "clippy check failed. Fix the warnings above."
14 exit 1
15fi