show/hide this revision's text 2 added 140 characters in body

I would recommend you implement a Best Practice in code formatting. Then implement an application to format the code automatically (this works best with a continuous integration system). This way you don't have to worry if developers have their own style of coding since it will be automatically formatted once they check it into source control.

As far as how to get the line count across various languages, the easiest way is "wc -l" Granted their are other tools out there for counting lines of code (CLOC, SLOCCount), but that will work across all languages.

show/hide this revision's text 1

I would recommend you implement a Best Practice in code formatting. Then implement an application to format the code automatically (this works best with a continuous integration system). This way you don't have to worry if developers have their own style of coding since it will be automatically formatted once they check it into source control.

As far as how to get the line count across various languages, the easiest way is "wc -l" Granted their are other tools out there for counting lines of code, but that will work across all languages.