mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-09 23:27:28 +02:00
chore: fix ESLint warnings, restrict export all syntax (#6605)
* chore: fix ESLint warnings, forbid export all syntax * fix... * reorder
This commit is contained in:
parent
3fd99ad8d4
commit
45f6f8b869
22 changed files with 220 additions and 148 deletions
|
@ -9,5 +9,21 @@
|
|||
export {default as Joi} from './Joi';
|
||||
export {JoiFrontMatter} from './JoiFrontMatter';
|
||||
|
||||
export * from './validationUtils';
|
||||
export * from './validationSchemas';
|
||||
export {
|
||||
isValidationDisabledEscapeHatch,
|
||||
logValidationBugReportHint,
|
||||
printWarning,
|
||||
normalizePluginOptions,
|
||||
normalizeThemeConfig,
|
||||
validateFrontMatter,
|
||||
} from './validationUtils';
|
||||
export {
|
||||
PluginIdSchema,
|
||||
RemarkPluginsSchema,
|
||||
RehypePluginsSchema,
|
||||
AdmonitionsSchema,
|
||||
URISchema,
|
||||
PathnameSchema,
|
||||
FrontMatterTagsSchema,
|
||||
FrontMatterTOCHeadingLevels,
|
||||
} from './validationSchemas';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue