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 d428997 commit b36e512Copy full SHA for b36e512
eslint.config.js
@@ -248,7 +248,17 @@ module.exports = [
248
},
249
250
rules: {
251
+ // Extensions are required in ESM
252
'import/extensions': ['error', 'ignorePackages'],
253
+ // These don't appear to work correctly
254
+ // All these throw on the import of a dependency
255
+ 'import/namespace': 'off',
256
+ 'import/no-deprecated': 'off',
257
+ 'import/default': 'off',
258
+ 'import/no-named-as-default': 'off',
259
+ 'import/no-named-as-default-member': 'off',
260
+ 'import/no-unresalved': 'off',
261
+ 'import/no-missing-import': 'off',
262
263
264
];
0 commit comments