Files
redocly-cli/docs/commands/check-config.md
Dmytro Anansky bd82bcdd93 feat: command for linting Redocly config itself (#1491)
* feat: linting redocly config itself
2024-03-22 17:31:03 +02:00

1.5 KiB

check-config

Introduction

Use this command to check that everything in a Redocly configuration file is valid and in the expected format. Adding this check before using the configuration file with other commands can catch any problems at an early stage. This command uses the same mechanism as our API linting to match a file against an expected data structure.

Usage

redocly check-config
redocly check-config [--config=<path>]

Options

Option Type Description
--config string Specify path to the config file.
--lint-config string Specify the severity level for the configuration file.
Possible values: warn, error. Default value is error.

Examples

Default configuration file

By default, the CLI tool looks for the Redocly configuration file in the current working directory.

redocly check-config

Custom configuration file

Use the optional --config argument to provide an alternative path to a configuration file.

redocly check-config --config=./another/directory/config.yaml