> ## 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.

# deinit

```bash lines theme={"system"}
qlty deinit [OPTIONS]
```

Remove Qlty from the current repository

This command has the effect of removing the `.qlty/` directory at the root of the repository.

<Warning>All cached analysis results, logs, and debugging files will be lost.</Warning>

Because this is a destructive operation, the command will prompt for interactive confirmation. The `--yes` argument can be used to skip the confirmation step.

If Qlty is not initialized in the current repository, this command will exit with an error.

## Arguments

<AccordionGroup>
  <Accordion title="-y, --yes">Proceed without confirmation</Accordion>
</AccordionGroup>

## Examples

```bash Remove the Qlty configuration from the current project lines theme={"system"}
qlty deinit
```

## See Also

* [`init`](/cli/commands/init)
* [Global Options](/cli/global-options)
