| name | quality_validator |
| description | Ship öncesi son kontrol, deliverable validation, compliance. ⚠️ Son kalite kontrolü için kullan. Kod inceleme için → code-review. |
✅ Quality Validator
Kalite standardı ve deliverable validation rehberi.
📋 Validation Checklist
Documentation
- [ ] All required sections present
- [ ] No placeholder content
- [ ] Links working
- [ ] Images loading
- [ ] Spelling/grammar checked
Code
- [ ] Linting passes
- [ ] Tests passing
- [ ] No console.log
- [ ] No TODO/FIXME
- [ ] Types complete
Design
- [ ] Responsive
- [ ] Accessible (WCAG)
- [ ] Consistent styling
- [ ] Cross-browser tested
🔧 Quality Scores
| Score | Level | Action |
|---|
| 90-100 | Excellent | Ship |
| 80-89 | Good | Minor fixes |
| 70-79 | Acceptable | Review needed |
| <70 | Poor | Major rework |
📊 Validation Report
# Quality Validation Report
**Item:** [Name]
**Date:** [Date]
**Validator:** [Name]
## Summary
- **Overall Score:** [X]/100
- **Status:** Pass | Fail | Conditional
## Checklist Results
| Category | Pass | Fail | N/A |
|----------|------|------|-----|
| Documentation | 8 | 2 | 0 |
| Code | 12 | 1 | 2 |
| Design | 5 | 0 | 1 |
## Issues Found
| ID | Severity | Description | Status |
|----|----------|-------------|--------|
| 1 | High | [Issue] | Open |
| 2 | Low | [Issue] | Fixed |
## Recommendations
1. [Recommendation 1]
2. [Recommendation 2]
Quality Validator v1.1 - Enhanced
🔄 Workflow
Kaynak: SonarQube Clean Code & Google Engineering Practices
Aşama 1: Static Analysis & Automation
Aşama 2: Runtime Quality
Aşama 3: Deliverable & Compliance
Kontrol Noktaları
| Aşama | Doğrulama |
|---|
| 1 | CI pipeline'ı "warning" durumunda bile fail edecek şekilde (treat warnings as errors) ayarlandı mı? |
| 2 | "Works on my machine" sorunu ekarte edildi mi? (Dockerized test run). |
| 3 | Güvenlik taraması (SAST) temiz mi? |