vote up 2 vote down star

I personally don't use FxCop yet. We want to work out the unit testing first before going with code analysis. However, which rules would you permanantly deactivate? Which rules would you deactivate temporarily and in which situation?

flag

I was planning to use it with TFS. – Maxim Nov 2 '08 at 20:44

5 Answers

vote up 1 vote down check

I don't use the naming convention rule that prohibits underscores in method/event names. I've gotten used to "Button1_Click". Visual Studio automatically inserts the underscores, so you have to manually remove them. I just think it's easier to leave them alone. And, I add the underscore when I create a method/event.

link|flag
vote up 2 vote down

CA2210 Assemblies should have valid strong names is an annoying one.

link|flag
But I'm open to suggestions about why I should stop ignoring it :-) – wcoenen Mar 18 at 0:37
vote up 0 vote down

It complains about "ID" and suggests "Id"... even though that follows the "two-character-abbreviations-are-all-capped" rule :O)

link|flag
I was coming to this question from stackoverflow.com/questions/264823/… about ID or Id. Actually, Id is correct, because the two letter thing only applies to acronyms and not to abbreviations. :) – OregonGhost Nov 5 '08 at 11:11
But ID can be an acronym, since it stands for "identity documentation". – HeavyWave Oct 20 at 6:20
Also known as "Id Documentation"? ;) – Rob Fonseca-Ensor Nov 19 at 9:52
vote up 5 vote down

I dislike rule CA1021: Avoid out parameters. Out parameters are useful for many different patterns (including the .Net Try* pattern). Out can certainly be overused but really it seems overkill to have an FxCop rule for it.

Rule CA1021

link|flag
vote up 2 vote down

There's a whole list of pedantic crap you'll want to turn off depending on the system you're building. I'd suggest examining the FxCop output and deciding yourself. One mans pedantry is anothers "must have".

link|flag

Your Answer

Get an OpenID
or

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