Skip to content

Commit 8bc6074

Browse files
committed
Linter
1 parent f495cb4 commit 8bc6074

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/schema-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function getTypeInfo(parameter, options = { includeNulls: false, enableEx
2121
dataType = `{recursive: ${schema.circularReference.name}} `;
2222
} else if (schema.type || schema.const) {
2323
if (!schema.type && schema.const) {
24-
schema.type = "const";
24+
schema.type = 'const';
2525
}
2626
const arraySchema = Array.isArray(schema.type) ? schema.type : (typeof schema.type === 'string' ? schema.type.split('┃') : schema.type);
2727
dataType = Array.isArray(arraySchema) ? arraySchema.filter((s) => s !== 'null' || options.includeNulls).join('┃') : schema.type;

0 commit comments

Comments
 (0)