We using SonarQube 5.2, the Rule
Redundant modifiers should be removed
does not working correctly.
The class is defined in multiple files, therefore it be has declared as partial, but SonarQube mark this as bug.
Has anyone an idea to fix this?
We using SonarQube 5.2, the Rule
Redundant modifiers should be removed
does not working correctly.
The class is defined in multiple files, therefore it be has declared as partial, but SonarQube mark this as bug.
Has anyone an idea to fix this?
try putting //NOSONAR
For example : public partial class MyClass //NOSONAR
Similar thing to skip the rule is here too