vote up 11 vote down star
2

I'm planning to start using FxCop in one of our ongoing project. But, when i tried it with selecting all available rules, it looks like I have to make lots of changes in my code. Being a "team member" I can't right away start making these changes, like naming convention change etc. anyway i would like to start using FxCop with a minimal rule set and would gradually increase the rule set as we goes on. Can you suggest me some must have FxCop rules which i should start following. Or do you suggest any better approach?

Note: Most of my code is in C#.

flag

38% accept rate

8 Answers

vote up 7 vote down

On our most important code:

  • Treat warnings as errors (level 4)
  • FxCop must pass 100% (no ignores generally allowed)
  • Gendarme used as a guideline (sometimes it conflicts with FxCop)

Believe it or not, FxCop teaches you a hell of a lot on how to write better code... great tool! So for us, all rules are equally important.

link|flag
@Skliwz: +1, only diff is we run a reduced set during dev, but have to pass it full on for QA. – sixlettervariables Sep 27 '08 at 23:37
A lot of FxCop rules have a high false-positive rate. For example, functions that start with "Get" or catching general exceptions. – Jonathan Allen Dec 18 '08 at 17:13
vote up 4 vote down

In my opinion, do the following:

For any new project, follow all FxCop rules. You may want to disable some of them, since not everything will make sense for your project. For an existing project, follow the rules from these categories as a minimum set:

  • Globalization
  • Interoperability
  • Security
  • Performance
  • Portability

Since these are typically only few rule violations in an existing project, compared to the other categories, but may improve the quality of your application. When these rules are clear, try to fix the following categories:

  • Design
  • Usage

Since these will make it easier for you to spot bugs that have to do with the violations, but you will have a large amount of violations in existing code.

Always sort the violations by level/fix category and start with the critical ones. Skip the warnings for now.

In case you didn't know, there's also StyleCop available from Microsoft, checking your code on the source level. Be sure to enable MSBuild integration during installation.

link|flag
vote up 1 vote down

We're a web shop so we drop the following rules:

  • Anything with Interop (we don't support COM integration unless a client pays for it!)
  • Key signing (web apps shouldn't need high security prilages)

Occationally we'll drop the rule about using higher frameworks in dependancies as some of our CMS's are still .NET 2.0, but that doesn't mean the DAL/ Business Layers can't be .NET 3.5 as long as you're not trying to return an IQueryable (or anything .NET 3, 3.5).

link|flag
vote up 0 vote down

The design and security rules are a good place to start.

link|flag
vote up 0 vote down

I fully agree with Sklivvz. But for existing projects, you may clean up FxCop violations category by category.

From time to time, Gendarme accepts new rules that are quite useful. So you may use Gendarme besides.

link|flag
vote up 0 vote down

In our process, we enabled all the rules and then we have to justify any suppressions as part of our review process. Often, it's just not possible to fix the error in time-efficient manner with regards to deadlines or its an error raised in error (this sometimes occurs - especially if your architecture handles plug-ins via reflection).

We also wrote a custom rule for globalization to replace an existing one because we didn't want to globalize the strings passed to exceptions.

In general, I'd say it's best to try and adhere to all rules. In my current home project, I have four build configurations - one set that specify the CODE_ANALYSIS define and one set that don't. That way, I can see all the messages I have suppressed just by building a non-CODE_ANALYSIS configuration. This means that suppressed messages can be periodically reviewed and potentially addressed or removed as required.

What I'd like to do in the long-run is have a build step that analyzes the SuppressMessage attributes against the actual errors and highlights those suppressions that are no longer required, but that's not currently possible with my setup.

link|flag
vote up 0 vote down

You can also use the tool NDepend to write your rules and harness some of the 200 default rules. The cool fact about NDepend is that it comes with a dedicated language to write your own rules: Code Query Language (CQL)

For example the following CQL rule will warn if it finds method with more than 20 lines of code:
WARN IF Count > 0 IN SELECT METHODS WHERE NbLinesOfCode > 20

link|flag
vote up 0 vote down

Turn on one rule at a time. Fix or exclude any warnings it reports, then start on the next one.

link|flag

Your Answer

Get an OpenID
or

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