From 69f9ef8187f3b7d3df1c130ce1451c8a60bb81f0 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sat, 6 Dec 2025 20:41:33 -0500 Subject: [PATCH] updated AGENTS.md --- AGENTS.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index ac848f6..4093a19 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,5 +1,12 @@ ## Dev environment tips - use treefmt to format all files -- make python code ruff compliant -- use pytest to test python code +- keep new code consistent with the existing style + +### Python + +- make code `ruff` compliant +- use pytest to test python code tests should be put in `tests` directory +- dont use global state +- use google style docstrings +- use typer over argparse