Open dapplion opened 2 years ago
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 :+1:
in 137.5s
Description
Prevent circular dependencies with eslint
See https://github.com/ChainSafe/lodestar/pull/3742 for an example implementation
Related to #6011
@nazarhussain is there a biome rule?
Not at the moment, but hopefully something related to Analyzer will sure come soon. https://biomejs.dev/analyzer/
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 :+1:Description
Prevent circular dependencies with eslint
See https://github.com/ChainSafe/lodestar/pull/3742 for an example implementation