Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pyproject.toml (Dependencies & tool config)
## Essential Directives

### Code Standards
- **Type Hints:** Required on ALL function signatures and class members. Enforce strictly with mypy.
- **Type Hints:** Required on ALL function signatures and class members. Enforce strictly with mypy. Avoid using `# type: ignore` comments to suppress mypy errors; fix the underlying type issues instead.
- **Docstrings:** Google-style format for all public APIs.
- **Logging:** Use `logging` module only; never `print()`.
- **Relative Paths:** Never use absolute paths in code.
Expand Down
2 changes: 1 addition & 1 deletion AGENTS_MANUAL_CHECKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pyproject.toml (Dependencies & tool config)
## Essential Directives

### Code Standards
- **Type Hints:** Required on ALL function signatures and class members. Write code that will pass mypy.
- **Type Hints:** Required on ALL function signatures and class members. Write code that will pass mypy. Avoid using `# type: ignore` comments to suppress mypy errors; fix the underlying type issues instead.
- **Docstrings:** Google-style format for all public APIs.
- **Logging:** Use `logging` module only; never `print()`.
- **Relative Paths:** Never use absolute paths in code.
Expand Down
Loading