We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb9e04 commit 9171605Copy full SHA for 9171605
IxDFCodingStandard/ruleset.xml
@@ -71,6 +71,8 @@
71
<!-- Forbid useless empty method overrides -->
72
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod"/>
73
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter">
74
+ <!-- But allow specifying unused params not the last parameters that are used. Needed for code not owned by us. -->
75
+ <exclude name="Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed"/>
76
<!-- But allow specifying unused params for methods declared in parent classes -->
77
<exclude name="Generic.CodeAnalysis.UnusedFunctionParameter.FoundInExtendedClass"/>
78
0 commit comments