stabilize tests

This commit is contained in:
master
2026-02-01 21:37:40 +02:00
parent 55744f6a39
commit 5d5e80b2e4
6435 changed files with 33984 additions and 13802 deletions

23
src/__Analyzers/AGENTS.md Normal file
View File

@@ -0,0 +1,23 @@
# AGENTS - __Analyzers Module
## Working Directory
- `src/__Analyzers/**` (analyzers and analyzer tests).
## Required Reading
- `docs/README.md`
- `docs/07_HIGH_LEVEL_ARCHITECTURE.md`
- `docs/modules/platform/architecture-overview.md`
- `docs/CODING_STANDARDS.md`
- `docs/code-of-conduct/TESTING_PRACTICES.md`
## Engineering Rules
- Analyzer output must be deterministic and offline; no network or filesystem writes.
- Diagnostics IDs and messages must remain stable; keep ordering deterministic.
- Prefer minimal allocations and avoid global state.
## Testing & Verification
- Tests live in `src/__Analyzers/**.Tests` projects.
- Add baseline tests for each rule and validate diagnostics deterministically.
## Sprint Discipline
- Update sprint tracker status and Decisions & Risks for any rule or contract change.