refactor(scripts): reorganize scripts/ into seed/ and validate/ subfolders
Move 9 init/seed scripts into scripts/seed/ and 7 validation scripts (+ validators/ subfolder) into scripts/validate/ to reduce clutter in the root scripts/ directory. Update all references across Makefile, CI/CD configs, pre-commit hooks, docs (~40 files), and Python imports. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Performance Rules Reference
|
||||
|
||||
This document provides a comprehensive reference for all performance rules enforced by the `scripts/validate_performance.py` validator.
|
||||
This document provides a comprehensive reference for all performance rules enforced by the `scripts/validate/validate_performance.py` validator.
|
||||
|
||||
## Overview
|
||||
|
||||
@@ -16,26 +16,26 @@ The performance validator identifies potential performance issues and enforces b
|
||||
|
||||
```bash
|
||||
# Check all files
|
||||
python scripts/validate_performance.py
|
||||
python scripts/validate/validate_performance.py
|
||||
|
||||
# Verbose output
|
||||
python scripts/validate_performance.py -v
|
||||
python scripts/validate/validate_performance.py -v
|
||||
|
||||
# Errors only
|
||||
python scripts/validate_performance.py --errors-only
|
||||
python scripts/validate/validate_performance.py --errors-only
|
||||
|
||||
# JSON output (for CI/CD)
|
||||
python scripts/validate_performance.py --json
|
||||
python scripts/validate/validate_performance.py --json
|
||||
```
|
||||
|
||||
### Using the Unified Validator
|
||||
|
||||
```bash
|
||||
# Run performance checks only
|
||||
python scripts/validate_all.py --performance
|
||||
python scripts/validate/validate_all.py --performance
|
||||
|
||||
# Run all validators
|
||||
python scripts/validate_all.py
|
||||
python scripts/validate/validate_all.py
|
||||
```
|
||||
|
||||
## Severity Levels
|
||||
|
||||
Reference in New Issue
Block a user