Qlty — проверка качества и стиль кода

testing

qlty-check is a Claude Code skill that runs code quality checks, formatting, and metrics via the qlty CLI, which supports 70+ linters across 40+ programming languages. It invokes `scripts/qlty_check.py` with a set of parameters: `--fix` to auto-correct issues, `--fmt` to format files, `--metrics` to calculate complexity and duplication, `--smells` to detect code smells, and `--level` to filter results by severity (note/low/medium/high). By default only changed files are analyzed; the `--all` flag processes the entire repository. The skill also supports `--init` to configure qlty in a new repo and `--plugins` to list available plugins. It suits developers who want unified linting, style enforcement, and complexity analysis across mixed-language projects without configuring individual tools for each language.