QLTY — проверка качества кода в процессе разработки

testing

qlty-during-development is a Claude Code skill that integrates QLTY code-quality checks into the development workflow to catch issues as early as possible. It defines precise trigger points: run checks after completing a new file, after substantial edits to existing files, and before committing — but skip them while just reading code, fixing single-line typos, or mid-way through a multi-file refactor. The core commands are `qlty check` for linting, `qlty fmt` for formatting, `qlty check <file>` to target specific files, and `qlty check --fix` to auto-remediate violations. Because the skill is marked non-user-invocable, it is designed to operate as an embedded workflow pattern, ensuring style and quality enforcement happens continuously rather than being deferred to a final review stage.