From ce6e48db2bf974f07a3852e2900c424bd640a756 Mon Sep 17 00:00:00 2001 From: April Hall Date: Mon, 10 Feb 2025 03:46:26 -0500 Subject: [PATCH] ci: Set `{@html ...}` XSS Error to Warn --- eslint.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 3842396..cc26d07 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -34,4 +34,9 @@ export default ts.config( { ignores: ['src/lib/components/ui/**'], }, + { + rules: { + 'svelte/no-at-html-tags': 'warn', + }, + }, );