show/hide this revision's text 2 Made it clearer that I am talking about lines per method, rather than in total. More explanation as to why I want the metric.

Calculate Average Lines of Code per Method for Javascript

Are there any tools available for calculating the average number of lines of code per method?

I want to calculate this know the average size of each method, not just the total number of lines in the project. The per method count will allow me to measure how simple each method is.

This will be calculated as part of my continuous integration systemthe build process, and use displayed on a dashboard. The idea being that we can see if the results to monitor average size of each method is increasing. And this will flag the possibility that code qualitycomplexity is increasing and we may need to think about refactoring.

show/hide this revision's text 1

Calculate Lines of Code per Method for Javascript

Are there any tools available for calculating the number of lines of code per method?

I want to calculate this as part of my continuous integration system, and use the results to monitor code quality.