mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
|
|
import SkipAbbreviatedExamples from './rules/skip-abbreviated-examples.js'
|
||
|
|
|
||
|
|
export default function CustomRulesPlugin() {
|
||
|
|
return {
|
||
|
|
id: 'custom-rules',
|
||
|
|
rules: {
|
||
|
|
oas3: {
|
||
|
|
'skip-abbreviated-examples': SkipAbbreviatedExamples,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|