Skip to content

Commit fe05a36

Browse files
committed
fix: convert red x to yellow (warn) instead
1 parent 6ddee02 commit fe05a36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linters/typescript/src/context_linter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class ContextLinter {
9595
if (result.isValid) {
9696
console.log(` ✅ ${fileName} passed validation`);
9797
} else {
98-
console.error(` ${fileName} failed validation`);
98+
console.warn(` ⚠️ Missing fields: ${result.missingFields.join(', ')}`);
9999
}
100100
}
101101

0 commit comments

Comments
 (0)