|
|
|
|
|
by apaprocki
5362 days ago
|
|
A good idea is to check for certain style issues which you want to enforce and are easy to catch at checkin time. You can enforce things like no real tabs, line width, no trailing spaces, etc and make the person checking in the code get rid of it. Usually once it winds up in VCS[1], it is harder to go back and clean it up. People make mistakes all the time, and tools are scriptable. [1] Or do it at merge time if your setup involves pushing to a "work" repo which is merged to the real codebase later. |
|