Skip to content

Commit 32e5295

Browse files
committed
Use error without color
1 parent cefcdb1 commit 32e5295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/schema/validate-document.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export async function validateDocumentFromSource(
124124
if (e instanceof ValidationError) {
125125
error("Validation of YAML cell metadata failed.");
126126
for (const err of e.validationErrors) {
127-
info(tidyverseFormatError(err.niceError));
127+
error(tidyverseFormatError(err.niceError), { colorize: false });
128128
}
129129
result.push(...e.validationErrors);
130130
} else {

0 commit comments

Comments
 (0)