Stylecop-ish validation for c# code written in k&r style

325 Views Asked by At

I'm a big fan of the K&R coding style and I don't really like the Allman style at all. With resharper I can get visual studio to give me good support for K&R as I write the code, but I can't really integrate that into a continous integration system :/

Is there a stylecop "plugin" or a stylecop alternative somewhere that will validate code style according to k&r instead of allman or will I have to write my own code style checker to get something like that?

1

There are 1 best solutions below

2
On

You've actually given your own answer - Resharper can indeed do this as part of your continuous integration.

If you're using Teamcity for continuous integration, it's built in.

If not, you'll have to wire it up yourself using their command line utilities. Obviously you'll need to feed it your Resharper .DotSettings file with your preferred rules.