diff --git a/.changeset/warm-paths-glow.md b/.changeset/warm-paths-glow.md index 85f9e41b37..cbe4e70053 100644 --- a/.changeset/warm-paths-glow.md +++ b/.changeset/warm-paths-glow.md @@ -1,4 +1,5 @@ --- +"@redocly/cli": minor "@redocly/openapi-core": minor --- diff --git a/docs/@v2/rules/oas/no-http-verbs-in-paths.md b/docs/@v2/rules/oas/no-http-verbs-in-paths.md index 348bc4eaee..5447cb2073 100644 --- a/docs/@v2/rules/oas/no-http-verbs-in-paths.md +++ b/docs/@v2/rules/oas/no-http-verbs-in-paths.md @@ -49,7 +49,7 @@ With the `splitIntoWords` option enabled, "posters" is identified as a resource | -------------- | -------- | --------------------------------------------------------------------------------------------------------------------------- | | severity | string | Possible values: `off`, `warn`, `error`. Default `off` (in `recommended` configuration). | | splitIntoWords | boolean | Matches http verbs when the string is split into words based on casing. This can reduce false positives. Default **false**. | -| excludedPaths | [string] | List of paths to exclude from the check. Use exact path strings (e.g. `/token`). Default **[]**. | +| excludedPaths | [string] | List of paths to exclude from the check. Use exact path strings (e.g. `/get-signed-url` ). Default **[]**. | An example configuration: @@ -74,8 +74,8 @@ rules: no-http-verbs-in-paths: severity: error excludedPaths: - - /token - - /oauth/callback + - /get-signed-url + - /oauth/postback ``` ## Examples