We are currently introducing a zero compiler warning guideline for our checkins.
But there are other things to check. For general static code analysis rules we can use FxCop
and co (unused variables etc).
But what about naming conventions (variables, constants, class names etc)? For example we're having some special naming convention (e.g. we use the m_ prefix when declaring a private member).
Are there ways / tools to check these naming conventions we have, similar the way ReSharper
does it?
I would like to integrate those convention checks into our gated checkins and usual build definitions, but haven't found any way to do it yet.