Skip to content

Commit e9355e0

Browse files
committed
perf(eslint): improve performance of import/no-cycle
1 parent 303acfb commit e9355e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint/rules/import.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default {
4949
*
5050
* 🚫 Not fixable - https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md
5151
*/
52-
'import/no-cycle': 'error',
52+
'import/no-cycle': ['error', { disableScc: true, ignoreExternal: true }],
5353
/**
5454
* Disallow the use of extraneous packages.
5555
*

0 commit comments

Comments
 (0)