Top "Code-metrics" questions

Software metrics are quantitative data pertaining to source code, e.g. number of lines of code (LOC) for a file.

How many code lines do my project have

Possible Duplicate: Counting Line Numbers in Eclipse How Can I count the number of lines in my project including all …

eclipse code-metrics
How bad is SLOC (source lines of code) as a metric?

We are documenting our software development process. For technical people, this is pretty easy: iterative development with internal milestones every …

code-metrics
What does package tangle index data indicate in Sonar?

I have the following data on one of the 7 axes (See the second picture) after running a Sonar analysis on …

sonarqube code-metrics
cyclomatic complexity = 1 + #if statements?

I found the following paragraph regarding cyclomatic complexity on Wikipedia: It can be shown that the cyclomatic complexity of any …

if-statement code-metrics cyclomatic-complexity
Use of LOC to determine project size

How many lines of code (LOC) does it take to be considered a large project? How about for just one …

language-agnostic code-metrics lines-of-code
Are there any good tools for static code analysis in typescript?

We have been searching for good tools for measuring the quality of our TypeScript code. Mainly, we are interested in …

dependencies typescript static-analysis metrics code-metrics
How to use Pixel Tracking across domains in PHP

I understand the basics of pixel tracking, I'm able to insert a pixel that references an image on my tracking …

php cross-domain tracking pixel code-metrics
Why Does This Maintainability Index Increase?

I would be appreciative if someone could explain to me the difference between the following two pieces of code in …

c# refactoring metrics code-metrics
Do you find cyclomatic complexity a useful measure?

I've been playing around with measuring the cyclomatic complexity of a big code base. Cyclomatic complexity is the number of …

refactoring metrics code-metrics cyclomatic-complexity
How does "Assignment Branch Condition size for index is too high" work?

Rubocop is always report the error: app/controllers/account_controller.rb:5:3: C: Assignment Branch Condition size for index is too …

ruby code-metrics rubocop