We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Motivation
'import/no-cycle' is expensive computationally, consider restricting its maxdepth
maxdepth
See https://github.com/import-js/eslint-plugin-import/blob/HEAD/docs/rules/no-cycle.md#maxdepth
A lint run in master currently takes Done in 121.30s. in Github Actions (from https://github.com/ChainSafe/lodestar/runs/5137987474?check_suite_focus=true#step:13:38)
Done in 121.30s.
In this PR for a failed run it took in 137.5s so the extra time is okay 👍
in 137.5s
Description
Prevent circular dependencies with eslint
See #3742 for an example implementation
The text was updated successfully, but these errors were encountered:
Related to #6011
Sorry, something went wrong.
@nazarhussain is there a biome rule?
Not at the moment, but hopefully something related to Analyzer will sure come soon. https://biomejs.dev/analyzer/
No branches or pull requests
Motivation
'import/no-cycle' is expensive computationally, consider restricting its
maxdepth
See https://github.com/import-js/eslint-plugin-import/blob/HEAD/docs/rules/no-cycle.md#maxdepth
A lint run in master currently takes
Done in 121.30s.
in Github Actions (from https://github.com/ChainSafe/lodestar/runs/5137987474?check_suite_focus=true#step:13:38)In this PR for a failed run it took
in 137.5s
so the extra time is okay 👍Description
Prevent circular dependencies with eslint
See #3742 for an example implementation
The text was updated successfully, but these errors were encountered: