$qlty install [options]

Install code analysis tools and their dependencies

This command will examine the current project’s configuration and install enabled plugins and any dependencies (e.g. runtimes like NodeJS).

Installations are cached and re-used between runs of qlty check and qlty fmt.

Under normal circumstances, running qlty install is not necessary, because plugins will automatically be installed as needed. However, plugin installations require an Internet connection and in some cases can be slow, so qlty install can be used to prepare the system for future analysis.

When run without the --filter [FILTER] argument, only the specified plugins and their dependencies will be installed. By default all plugins are installed.

Arguments

Examples

Install all plugins
$qlty install
Install ESLint
$qlty install --filter=eslint

See Also