Skip to content

Commit c5ac229

Browse files
committed
Add import/export rule to ESLint ignores for Pro package
ESLint's import/export rule fails on Pro package files that use 'export * from' with workspace package imports that can't be resolved before the packages are built. This completes the ESLint import rule disabling for Pro package files.
1 parent 09f8c27 commit c5ac229

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

eslint.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ const config = tsEslint.config([
240240
'import/no-self-import': 'off',
241241
'import/no-named-as-default': 'off',
242242
'import/no-named-as-default-member': 'off',
243+
'import/export': 'off',
243244
// Disable unsafe type rules - Pro package uses internal APIs with complex types
244245
'@typescript-eslint/no-unsafe-assignment': 'off',
245246
'@typescript-eslint/no-unsafe-call': 'off',

0 commit comments

Comments
 (0)