From 98ee8d265ddad3d8e2680dfd83a0b34b23f83cd7 Mon Sep 17 00:00:00 2001 From: maxDorninger <97409287+maxDorninger@users.noreply.github.com> Date: Thu, 18 Sep 2025 12:47:10 +0200 Subject: [PATCH] disable svelte no navigation without resolve eslint rule --- web/eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/eslint.config.js b/web/eslint.config.js index b478b21..7537f34 100644 --- a/web/eslint.config.js +++ b/web/eslint.config.js @@ -48,6 +48,7 @@ export default ts.config( rules: { // Override or add rule settings here, such as: // 'svelte/rule-name': 'error' + 'svelte/no-navigation-without-resolve': 'off' } } );