BlueSky & more on desktop
lazurite.stormlightlabs.org/
tauri
rust
typescript
bluesky
appview
atproto
solid
1# Pull Request
2
3## Summary
4
5Describe what changed and why.
6
7## Related Issues
8
9Closes #
10
11## Type of Change
12
13- [ ] Fix
14- [ ] Feature
15- [ ] Refactor
16- [ ] Docs
17- [ ] Chore
18
19## Validation
20
21List what you ran and the result.
22
23```bash
24pnpm typecheck
25pnpm test
26pnpm lint
27pnpm format
28```
29
30If Rust code changed:
31
32```bash
33cd src-tauri
34cargo fmt --check
35cargo clippy --all-targets --all-features -- -D warnings
36
37# OR
38cargo clippy --fix --allow-dirty && cargo fmt
39```
40
41## Screenshots (If UI Changed)
42
43Attach screenshots or a short recording.
44
45## Checklist
46
47- [ ] I have read CONTRIBUTING.md
48- [ ] I kept this PR focused and reasonably small
49- [ ] I updated docs/tests where relevant