Skip to content

Commit 3bb5f99

Browse files
fix: enforce lowercase optional, no 'Optional' allowed
1 parent 25e2a09 commit 3bb5f99

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/markdown-helpers.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,11 @@ const convertNestedListToTypedKeys = (list: List): TypedKey[] => {
603603
'optionality for a typed key should be defined before the "-" and after the type',
604604
);
605605

606-
const isRootOptional = / ?\(optional\) ?/i.test(rawType);
606+
const isRootOptional = / ?\(optional\) ?/.test(rawType);
607+
expect(rawType).not.to.match(
608+
/ ?\(Optional\) ?/,
609+
'optionality should be defined with "(optional)", all lower case, no capital "O"',
610+
);
607611
const cleanedType = rawType.replace(/ ?\(optional\) ?/i, '').replace(/_.+?_/g, '');
608612
const subTypedKeys = item.nestedList ? convertNestedListToTypedKeys(item.nestedList) : null;
609613
const type = rawTypeToTypeInformation(cleanedType.trim(), rawDescription, subTypedKeys);

0 commit comments

Comments
 (0)