fix identation track.

This commit is contained in:
ed
2026-05-16 02:34:52 -04:00
parent 11c9aab685
commit 9d40fec46e
4 changed files with 118 additions and 0 deletions
@@ -0,0 +1,51 @@
# Implementation Plan: Fix Indentation 1-Space Convention
## Phase 1: Audit and Classification
Focus: Identify all files requiring indentation correction
- [ ] Task 1.1: Create indentation audit script to scan all Python files
- File: `scripts/audit_indentation.py`
- Detect: Lines with leading whitespace that is not a multiple of 1 space
- Output: List of files with line numbers and current indentation level
- [ ] Task 1.2: Run audit against src/ directory (51 files)
- File: src/
- Categorize: Files with 0 issues, 1-10 issues, 10+ issues
- [ ] Task 1.3: Run audit against tests/ directory
- File: tests/
- [ ] Task 1.4: Run audit against scripts/ directory
- File: scripts/
- [ ] Task 1.5: Run audit against conductor/ directory
- File: conductor/
## Phase 2: Correct Indentation - src/ Files
Focus: Fix identified files in src/ (in order of severity)
- [ ] Task 2.1: Fix src/ files with 1-10 indentation issues
- [ ] Task 2.2: Fix src/ files with 10+ indentation issues
- [ ] Task 2.3: Verify syntax after each file fix
- [ ] Task 2.4: Commit each file individually
## Phase 3: Correct Indentation - tests/ Files
Focus: Fix identified files in tests/
- [ ] Task 3.1: Fix tests/ files with indentation issues
- [ ] Task 3.2: Verify syntax after each file fix
- [ ] Task 3.3: Commit each file individually
## Phase 4: Correct Indentation - scripts/ Files
Focus: Fix identified files in scripts/
- [ ] Task 4.1: Fix scripts/ files with indentation issues
- [ ] Task 4.2: Verify syntax after each file fix
- [ ] Task 4.3: Commit each file individually
## Phase 5: Correct Indentation - conductor/ Files
Focus: Fix identified files in conductor/
- [ ] Task 5.1: Fix conductor/ Python files with indentation issues
- [ ] Task 5.2: Verify syntax after each file fix
- [ ] Task 5.3: Commit each file individually