tweak phpcs configurations

This commit is contained in:
azjezz 2020-09-05 16:29:08 +01:00
parent cf36b93ba7
commit c1709d8742

View File

@ -10,23 +10,23 @@
<arg name="colors"/> <arg name="colors"/>
<arg name="parallel" value="75"/> <arg name="parallel" value="75"/>
<rule ref="PSR1"/> <rule ref="PSR1">
<rule ref="PSR2"/> <type>error</type>
<rule ref="PSR12"/> </rule>
<rule ref="PSR2">
<type>error</type>
</rule>
<rule ref="PSR12">
<type>error</type>
</rule>
<!-- Don't hide tokenizer exceptions --> <!-- Don't hide tokenizer exceptions -->
<rule ref="Internal.Tokenizer.Exception"> <rule ref="Internal.Tokenizer.Exception">
<type>error</type> <type>error</type>
</rule> </rule>
<!-- Have 12 chars padding maximum and always show as errors -->
<rule ref="Generic.Formatting.MultipleStatementAlignment">
<properties>
<property name="maxPadding" value="12"/>
<property name="error" value="true"/>
</properties>
</rule>
<!-- Ban some functions --> <!-- Ban some functions -->
<rule ref="Generic.PHP.ForbiddenFunctions"> <rule ref="Generic.PHP.ForbiddenFunctions">
<properties> <properties>
@ -36,17 +36,8 @@
<element key="print" value="echo"/> <element key="print" value="echo"/>
<element key="is_null" value="null"/> <element key="is_null" value="null"/>
<element key="create_function" value="null"/> <element key="create_function" value="null"/>
<element key="assert" value="Psl\invariant"/>
</property> </property>
</properties> </properties>
</rule> </rule>
<!-- Private methods MUST not be prefixed with an underscore -->
<rule ref="PSR2.Methods.MethodDeclaration.Underscore">
<type>error</type>
</rule>
<!-- Private properties MUST not be prefixed with an underscore -->
<rule ref="PSR2.Classes.PropertyDeclaration.Underscore">
<type>error</type>
</rule>
</ruleset> </ruleset>