We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c46b51 commit f2cb5fbCopy full SHA for f2cb5fb
1 file changed
AGENTS.md
@@ -18,8 +18,6 @@
18
19
### Do
20
21
-- **Type annotations REQUIRED** on ALL functions including tests. Use syntax compatible with Python 3.11+
22
-- Use `X | None` not `Optional[X]`
23
- Add docstrings on all public functions and classes
24
- Use file-scoped commands for fast feedback (see below)
25
- Follow existing patterns - search codebase for similar code
@@ -29,8 +27,6 @@
29
27
30
28
### Don't
31
32
-- Don't use `Optional[X]` syntax (use `X | None`)
33
-- Don't omit type annotations or return types
34
- Don't run full test suite for small changes (use file-scoped)
35
- Don't create temporary helper scripts or workarounds
36
- Don't commit without running quality checks
0 commit comments