summaryrefslogtreecommitdiff
path: root/AGENTS.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-06 11:14:27 +0300
committerPaul Buetow <paul@buetow.org>2025-09-06 11:14:27 +0300
commitfb267966f7840df222338f57023273a993a73c9a (patch)
treed10066412f08b386a6f9fe9289f27124c6ebe9d6 /AGENTS.md
parent1bf4251a7edbd00902f22db77031d0f998569614 (diff)
use TOML not JSON for configuration
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/AGENTS.md b/AGENTS.md
index 629c5de..8758804 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -10,7 +10,7 @@
- If possible, construct individual methods so that they can be unit tested. But only if it doesn't add too much boilerplate to the code base.
- Aim for at least 85% unit test coverage of all source code.
-- Ensure that all unit tests pass before merging any changes.
+- Ensure that all unit tests pass before commiting any changes.
- Always run the gofumpt code reformatter on all go files modified.
- There should be no source code file larger than 1000 lines. If so, split it up into multiple.
- There should be no function larger then 50 lines. If so, refactor or split up into multiple smaller functions.