diff --git a/packages/eslint-plugin-svelte/src/rules/prefer-const-helpers/index.ts b/packages/eslint-plugin-svelte/src/rules/prefer-const-helpers/index.ts index a073e2236..5e35138d1 100644 --- a/packages/eslint-plugin-svelte/src/rules/prefer-const-helpers/index.ts +++ b/packages/eslint-plugin-svelte/src/rules/prefer-const-helpers/index.ts @@ -19,7 +19,7 @@ type VariableDeclaration = type VariableDeclarator = | TSESTree.LetOrConstOrVarDeclarator | TSESTree.UsingInForOfDeclarator - | TSESTree.UsingInNomalConextDeclarator; + | TSESTree.UsingInNormalConextDeclarator; const PATTERN_TYPE = /^(?:.+?Pattern|RestElement|SpreadProperty|ExperimentalRestProperty|Property)$/u;