Package Exports
- @redocly/cli/lib/commands/preview-docs
- @redocly/cli/lib/commands/preview-docs/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@redocly/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Redocly CLI toolset
Redocly CLI toolbox with rich validation and bundling features.

Features
Currently, @redocly/cli supports these features:
- Multifile validation. No need to bundle your file before validation.
- Lightning-fast validation. Lint a 1 Mb file in less than one second.
- Built-in rules for common validations.
- Configurable severity levels for each rule.
- Human-readable error messages with codeframes and stylish format options.
- Intuitive suggestions for misspelled types or references.
- Easy to implement custom rules.
- Bundle a multifile definition into a single file.
- Decorators to modify a validated definition during bundling.
- Preview reference docs for local development.
- Support for OpenAPI 2 (fka Swagger) and OpenAPI 3.0.
- Support for OpenAPI 3.1 (coming soon).
What makes this tool different
Unlike other OpenAPI linters, @redocly/cli defines the possible type tree of a valid OpenAPI definition and then traverses it. This approach is very similar to how linters for programming languages work and results in major performance benefits over other approaches. Extend functionality at different points in the lifecycle with preprocessors, rules, and decorators.
TLDR
npx @redocly/cli lint path-to-root-file.yaml
Read the docs
Credits
Thanks to graphql-js and eslint for inspiration of the definition traversal approach and to Swagger, Spectral, and OAS-Kit for inspiring the ruleset.