mobile bluesky app made with flutter lazurite.stormlightlabs.org/
mobile bluesky flutter
3
fork

Configure Feed

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

at 2fee0528f93dda97f2dd7ebb15163cc64f3d8e88 22 lines 430 B view raw
1# Format all Dart files 2format: 3 dart format lib test 4 5# Run static analysis 6lint: 7 flutter analyze 8 9# Test with failures only to focus on failures and hanging tests 10test-quiet: 11 flutter test --reporter=failures-only --timeout=90s 12 13# Run all tests 14test: 15 flutter test --timeout=90s 16 17# Run code gen 18gen: 19 dart run build_runner build --delete-conflicting-outputs 20 21# Run format, lint, and test 22check: format lint test