audio streaming app plyr.fm
38
fork

Configure Feed

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

document loq relax workflow in justfile and CLAUDE.md (#1111)

Add `just loq-relax` recipe and document in CLAUDE.md that the
correct response to loq violations is `just loq-relax <file>`,
not manual toml edits or code golf.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
796dd860 748a34f1

+5
+1
AGENTS.md
··· 36 36 * **Frontend:** `just frontend run` 37 37 * **Tests:** `just backend test` (run from repo root, not from backend/) 38 38 * **Linting:** `just backend lint` (Python) / `just frontend check` (Svelte) 39 + * **loq (line count):** when a file exceeds its limit, run `just loq-relax <file>` — never manually edit loq.toml or play code golf to fit 39 40 * **Migrations:** `just backend migrate "message"` (create), `just backend migrate-up` (apply) 40 41 41 42 ## 📂 Project Structure
+4
justfile
··· 38 38 dev-services-down: 39 39 docker compose down 40 40 41 + # raise loq line limit for files that exceed it 42 + loq-relax *FILES: 43 + uvx loq relax {{ FILES }} 44 + 41 45 # expose backend via ngrok tunnel 42 46 tunnel: 43 47 ngrok http 8001 --domain tunnel.zzstoatzz.io