atproto utils for zig zat.dev
atproto sdk zig

add justfile and contributing docs

Changed files
+32
+15
CONTRIBUTING.md
··· 1 + # contributing 2 + 3 + ## before committing 4 + 5 + ```sh 6 + just fmt 7 + ``` 8 + 9 + or without just: 10 + 11 + ```sh 12 + zig fmt . 13 + ``` 14 + 15 + CI runs `zig fmt --check .` and will fail on unformatted code.
+17
justfile
··· 1 + # zat 2 + 3 + # show available commands 4 + default: 5 + @just --list 6 + 7 + # format code 8 + fmt: 9 + zig fmt . 10 + 11 + # check formatting (CI) 12 + check: 13 + zig fmt --check . 14 + 15 + # run tests 16 + test: 17 + zig build test