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

# config show

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

Print the full, merged configuration

Qlty uses a strategy of merging layered configuration in this order:

1. Global defaults
2. Any Sources declared in the project's `qlty.toml`
3. Configuration from the `qlty.toml`

Each layer is able to override the earlier layers using a deep merge. The result of this process is a single, merged configuration with all of the configuration that Qlty uses.

This command prints that configuration in YAML format to aid with debugging.

If the configuration is missing or invalid, the command will exit with an error.

## Examples

```bash Print the current project's full, merged configuration lines theme={"system"}
qlty config show
```

## See Also

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