- It's cool to have documentation right in place
- Convinient tooltips identifying the openapi type
- Adding rules to closest redocly.yaml to the openapi spec has no effect on linting in case with multiple redocly.yaml files. Only adding rules to the root config takes effect.
- It would be great if configurable rules could validate the subject type and underline the invalid values
rules:
rule/to-snake-case:
subject:
type: Operation
property:
- operationId
assertions:
casing: snake_case
rule/max-tag-description:
subject:
type: Tag
property: description
assertions:
maxLength: 30
rule/require-parameter-example:
subject:
type: Parameter
assertions:
requireAny:
- example
- examples