This commit is contained in:
2026-04-09 15:04:59 +02:00
parent 4a85efc270
commit 4cc22447c7
12 changed files with 589 additions and 68 deletions
+8
View File
@@ -0,0 +1,8 @@
# Conventions
## Rust Style
- Prefer `use serde_json as json;` whenever a file works with JSON values or macros.
- Keep functions on the happy path.
- Use early exits for optional values with `let Some(x) = maybe else { return ...; }`.
- Avoid deep nesting when an early return makes the flow clearer.