Skip to content

Commit b36e512

Browse files
committed
fix lints
1 parent d428997 commit b36e512

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

eslint.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,17 @@ module.exports = [
248248
},
249249
},
250250
rules: {
251+
// Extensions are required in ESM
251252
'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',
252262
},
253263
},
254264
];

0 commit comments

Comments
 (0)