When working on large code base with large team, its real challenge to maintain code quality and coding style.

well, controlling code quality is a huge topic on its own. But control of code style could be simplified with a tool.

We started using indent. Its real neat tool with huge set of options to configure. In the beginning we were fiddling with the source and had some scripts but finally settled with UniversalIndentGUI which comes with few more beautifiers such as GreatCode, Artistic Style, Uncrustify, BCPP etc.

[I merely wanted to add this as information instead of question. But please add your views, opinions if you have any other interesting findings! Cheers]

link|improve this question

Ask a question and try to give your solution as an answer so that people can vote it up or down. Currently there is no way to vote your question up and answer down !!! – Niyaz Sep 8 '08 at 9:43
Thanks for the suggestion Niyaz! – Prakash Sep 9 '08 at 12:44
feedback

3 Answers

up vote 5 down vote accepted

If you use VIM you can use the "=" feature to automatically format the code.
Select the code and then press the "=" key, or else press "=" and then type a movement command.

link|improve this answer
feedback

the team should have standard coding format or style so that the team can implement it.

link|improve this answer
feedback

Personally, I think this kind of 'un-question' is a bit irritating and goes against the stackoverflow principles of "ask a question, get the best answer, accept it".

Just my 2c...

Relating to the question, if you're already developing with an IDE, have code a separate 'code beautifier' GUI seems madness. And if you're not using an IDE, then chances are that shell scripts are more up your street anyway.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.