- Auto-fixed 4,496 lint issues (import sorting, modern syntax, etc.) - Added ignore rules for patterns intentional in this codebase: E402 (late imports), E712 (SQLAlchemy filters), B904 (raise from), SIM108/SIM105/SIM117 (readability preferences) - Added per-file ignores for tests and scripts - Excluded broken scripts/rename_terminology.py (has curly quotes) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
991 B
Python
41 lines
991 B
Python
# app/modules/dev_tools/services/__init__.py
|
|
"""
|
|
Dev-Tools module services.
|
|
|
|
Provides code quality scanning and test running functionality.
|
|
|
|
Services:
|
|
- code_quality_service: Code quality scanning and violation management
|
|
- test_runner_service: Test execution and results management
|
|
"""
|
|
|
|
from app.modules.dev_tools.services.code_quality_service import (
|
|
VALID_VALIDATOR_TYPES,
|
|
VALIDATOR_ARCHITECTURE,
|
|
VALIDATOR_NAMES,
|
|
VALIDATOR_PERFORMANCE,
|
|
VALIDATOR_SCRIPTS,
|
|
VALIDATOR_SECURITY,
|
|
CodeQualityService,
|
|
code_quality_service,
|
|
)
|
|
from app.modules.dev_tools.services.test_runner_service import (
|
|
TestRunnerService,
|
|
test_runner_service,
|
|
)
|
|
|
|
__all__ = [
|
|
# Code quality
|
|
"code_quality_service",
|
|
"CodeQualityService",
|
|
"VALIDATOR_ARCHITECTURE",
|
|
"VALIDATOR_SECURITY",
|
|
"VALIDATOR_PERFORMANCE",
|
|
"VALID_VALIDATOR_TYPES",
|
|
"VALIDATOR_SCRIPTS",
|
|
"VALIDATOR_NAMES",
|
|
# Test runner
|
|
"test_runner_service",
|
|
"TestRunnerService",
|
|
]
|