Skip to content

Commit e54ab80

Browse files
fix(lxlweb): temporarily disable svelte/no-navigation-without-resolve lint rule
1 parent 6764d8c commit e54ab80

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lxl-web/eslint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export default ts.config(
3030
// typescript-eslint strongly recommend that you do not use the no-undef lint rule on TypeScript projects.
3131
// see: https://typescript-eslint.io/troubleshooting/faqs/eslint/#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors
3232
'no-undef': 'off',
33-
'svelte/no-useless-mustaches': 'warn'
33+
'svelte/no-useless-mustaches': 'warn',
34+
// TODO: Fix all files. temp disabled to not be flooded with errors.
35+
'svelte/no-navigation-without-resolve': 'warn'
3436
}
3537
},
3638
{

0 commit comments

Comments
 (0)