#!/usr/bin/env python3
"""
Quick entry point for code quality checks.
This can be run from the project root as: ./check
"""

import sys
from pathlib import Path

# Add the scripts directory to the path and run the main script
scripts_dir = Path(__file__).parent / "scripts"
sys.path.insert(0, str(scripts_dir))

from check_code_quality import main

if __name__ == "__main__":
    sys.exit(main())