I've already got enough troubles with over-sensitive code analysis rules in our build. Here's some things that will break our build:
  • Using/Imports statements are out of order.
  • Two blank lines in a row.
  • Not enough whitespace between the start of the comment and the comment token.
  • Too much whitespace between the start of the comment and the comment token.
  • Comments should be on top of a line, so don't try and leave a TODO at the bottom.

That's right, I've broken many a build by adding comments to a file. Curiously enough, the build happily allows me to commit code that throws NotImplementedException or has 500 TODOs. RAGE.