The C# plugin within Sonar flags methods where the cyclomatic complexity is greater than 10 (CSharpsquid:S1541 - Methods should not be too complex). This is great for 'real' code, but my team finds it annoying when a method containing just a simple 'switch' statement with 5 cases (used to translate one enum type into another enum type) is flagged as being too complex.
Is it possible to suppress the flag/rule on individual methods within the code-base? If so, how?