> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qlty.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# plugins disable

```bash lines theme={"system"}
qlty plugins disable [OPTIONS] [PLUGINS]...
```

Disable plugins for the current project

The command edits the current project's `qlty.toml` file to disable plugins.

## Arguments

<AccordionGroup>
  <Accordion title="[PLUGINS]...">Plugins to disable by name</Accordion>
</AccordionGroup>

## Examples

```bash Disable the latest version of shellcheck lines theme={"system"}
qlty plugins disable shellcheck
```

```bash Disable rubocop and eslint lines theme={"system"}
qlty plugins disable rubocop eslint
```

## See Also

* [`plugins enable`](/cli/commands/plugins-enable)
* [`plugins upgrade`](/cli/commands/plugins-upgrade)
* [`plugins list`](/cli/commands/plugins-list)
* [Global Options](/cli/global-options)
