Skip to content

Commit 85d4f4b

Browse files
committed
fix: correct typo 'no-unresalved' → 'no-unresolved' in eslint config
The .mjs override meant to disable `import/no-unresolved` but silently never did because of the typo. Surfaced when the new subpath import of `ember-eslint-parser/hbs` tripped the rule; the existing main-entry import resolved fine so the typo went unnoticed.
1 parent b40a83e commit 85d4f4b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ module.exports = [
224224
'import/default': 'off',
225225
'import/no-named-as-default': 'off',
226226
'import/no-named-as-default-member': 'off',
227-
'import/no-unresalved': 'off',
227+
'import/no-unresolved': 'off',
228228
'import/no-missing-import': 'off',
229229

230230
// vite config format does not match regex

0 commit comments

Comments
 (0)