Skip to content

Commit

Permalink
ci: Improve the performance of the import/no-cycle linting rule
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy committed Aug 22, 2023
1 parent 9e3e298 commit b6baf03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@n8n_io/eslint-config/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const config = (module.exports = {
/**
* https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md
*/
'import/no-cycle': 'error',
'import/no-cycle': ['error', { ignoreExternal: false, maxDepth: 3 }],

/**
* https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-default-export.md
Expand Down

0 comments on commit b6baf03

Please sign in to comment.