Do not suppress warnings in PHP_CodeSniffer reports

parent 3f3551aa
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
<arg name="cache" value=".phpcs-cache"/> <arg name="cache" value=".phpcs-cache"/>
<arg name="colors"/> <arg name="colors"/>
<!-- Ignore warnings, show progress of the run and show sniff names --> <!-- Show progress of the run and show sniff names -->
<arg value="nps"/> <arg value="ps"/>
<file>bin</file> <file>bin</file>
<file>lib</file> <file>lib</file>
...@@ -38,6 +38,10 @@ ...@@ -38,6 +38,10 @@
</properties> </properties>
</rule> </rule>
<rule ref="PSR2.Classes.PropertyDeclaration.Underscore">
<exclude-pattern>*/lib/*</exclude-pattern>
</rule>
<rule ref="SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint"> <rule ref="SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint">
<exclude-pattern>*/lib/*</exclude-pattern> <exclude-pattern>*/lib/*</exclude-pattern>
</rule> </rule>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment