We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f9a05 commit 63c37fdCopy full SHA for 63c37fd
1 file changed
eslint.config.mjs
@@ -48,6 +48,7 @@ export default [
48
'no-inner-declarations': 'off', // allow function declarations anywhere
49
'no-useless-escape': 'off', // allow all escape chars cause ESLint sucks at detecting truly useless ones
50
'no-unused-vars': ['error', { 'caughtErrors': 'none' }], // allow unused named args in catch blocks
51
+ 'import/no-named-as-default-member': 'off', // allow accessing named exports via default import
52
'import/no-unresolved': ['error', { ignore: ['bump-utils'] }] // ignore missing bump-utils in --dev mode
53
}
54
},
0 commit comments