QLTY During Development Run QLTY checks during code writing to catch issues early. When to Run Run QLTY after significant code changes: - After completing a new file - After substantial edits to existing files - Before committing changes Commands Integration Pattern After writing code: 1. Run on changed files 2. If errors, fix them before proceeding 3. Run to ensure formatting Don't Run When - Just reading/exploring code - Making single-line typo fixes - In the middle of multi-file refactoring (run at end) ---