# app/tasks/celery_tasks/code_quality.py """ Celery tasks for code quality scans - LEGACY LOCATION This file exists for backward compatibility. The canonical location is now: app/modules/dev_tools/tasks/code_quality.py All imports should use the new location: from app.modules.dev_tools.tasks import execute_code_quality_scan """ # Re-export from canonical location for backward compatibility from app.modules.dev_tools.tasks.code_quality import ( execute_code_quality_scan, VALIDATOR_ARCHITECTURE, VALIDATOR_SECURITY, VALIDATOR_PERFORMANCE, VALID_VALIDATOR_TYPES, VALIDATOR_SCRIPTS, VALIDATOR_NAMES, ) __all__ = [ "execute_code_quality_scan", "VALIDATOR_ARCHITECTURE", "VALIDATOR_SECURITY", "VALIDATOR_PERFORMANCE", "VALID_VALIDATOR_TYPES", "VALIDATOR_SCRIPTS", "VALIDATOR_NAMES", ]