Files
doc-exports/.spectral.yaml
2026-02-09 10:52:15 +00:00

12 lines
334 B
YAML

rules:
path-starts-with-slash-no-spaces:
description: Path must start with / and contain no spaces
message: "Path '{{property}}' must start with '/' and must not contain spaces"
severity: error
given: $.paths
then:
field: "@key"
function: pattern
functionOptions:
match: "^\\/[^\\s]*$"