chore(lint): enforce stricter eslint/oxlint rules (#37883)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-02-11 11:07:02 -05:00
committed by GitHub
parent c28729f944
commit 534fa48f1f
9 changed files with 29 additions and 6 deletions

View File

@@ -64,6 +64,8 @@ export const TextCellRenderer = (params: CellRendererProps) => {
);
}
if (allowRenderHtml && isProbablyHTML(value)) {
// Safe: HTML is sanitized before rendering
// eslint-disable-next-line react/no-danger
return <div dangerouslySetInnerHTML={{ __html: sanitizeHtml(value) }} />;
}
}