Code Quality Check
Run ruff linter and ty type checker in one command.
Usage
code
/code-quality
Command
bash
source venv/bin/activate && \ echo "=== LINT ===" && \ ruff check eks_helm_reporter/ kubeagle/ .claude/skills/visual-analysis/tui_screenshot_capture/ && \ echo -e "\n=== TYPECHECK (ty) ===" && \ ty check eks_helm_reporter/ kubeagle/ .claude/skills/visual-analysis/tui_screenshot_capture/
Expected Output
code
=== LINT === All checks passed! === TYPECHECK (ty) === Found N diagnostics
Both checks must pass with 0 errors.