Skip to content

Commit ea2be17

Browse files
committed
internal: turn off rules that do not work for eslint 9 yet
1 parent 540e810 commit ea2be17

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ export default [
5555
'import/order': ['warn', { groups: ['builtin', 'parent', 'sibling', 'index', 'external'] }],
5656
'import/no-self-import': 'error',
5757
'import/no-cycle': ['error', { maxDepth: 6, allowUnsafeDynamicCyclicDependency: true }],
58+
'import/no-named-as-default': 'off', // Does not work with eslint 9
59+
'import/no-named-as-default-member': 'off', // Does not work with eslint 9
5860
'local-rules/prefer-static-styles-last': 'warn',
5961
'local-rules/enforce-umbraco-external-imports': [
6062
'error',

0 commit comments

Comments
 (0)