Files
openproject/.redocly/plugins/custom-rules.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
266 B
JavaScript
Raw Normal View History

2026-02-13 14:53:07 +01:00
import SkipAbbreviatedExamples from './rules/skip-abbreviated-examples.js'
export default function CustomRulesPlugin() {
return {
id: 'custom-rules',
rules: {
oas3: {
'skip-abbreviated-examples': SkipAbbreviatedExamples,
}
}
}
}