-
I've just done a code complexity check using [Radon](https://pypi.org/project/radon/). It's the same software also used by codefactor to find the complex functions that need fixing. The result of the …
-
[Cyclomatic complexity](https://en.wikipedia.org/wiki/Cyclomatic_complexity) is a measure of the complexity of code that is well established in computer science literature.
There is an R package o…
-
with similar information to what @Redridge already has for the generic indentation I think we can very well also calculate the cyclomatic complexity of "things" language independently.
-
In the same way that an UML can be generated, I think it would be great to detect cyclomatic complexities.
I think that somehow detecting Cyclomatic complexities might be good because of the follo…
-
Description: As already sort-of mentioned here regarding 'cognitive complexity' the `official` term is ['cyclomatic complexity'](https://en.wikipedia.org/wiki/Cyclomatic_complexity) or [here](https://…
-
These functions have a bit high cyclomatic complexity. Is there any plan to optimize them?
https://github.com/gfx-rs/gfx/blob/3acd426bd896dc578ec678293dacf37144c8c40e/src/backend/metal/src/command.rs…
-
## Description
A function with high cyclomatic complexity can be hard to understand and maintain. Cyclomatic complexity is a software metric that measures the number of independent paths through a fu…
-
Add a new column with a number for "Cyclomatic complexity" per method.
This will let us know how complex is it to test.
Is there any lib (not external tool) that already does this for php?
-
Since Spade is providing insight into the cyclomatic complexity of methods on a per-file basis, it would be more useful to generate a report for all files to observe where the most complex methods lie…
Bilge updated
6 years ago
-
Hi,
Well, just a quick question. Divergent from the header comment, P is missing in the code: https://github.com/ephox-gcc-plugins/cyclomatic_complexity/blob/master/cyc_complexity_plugin.c#L36
…