RprtCli/app/phpcs.xml

26 lines
899 B
XML
Raw Permalink Normal View History

2021-04-08 19:23:19 +02:00
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
<arg name="basepath" value="."/>
<arg name="cache" value=".phpcs-cache"/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="10"/>
2023-01-02 22:03:59 +01:00
2021-04-08 19:23:19 +02:00
<!-- Show progress -->
<arg value="p"/>
<!-- Paths to check -->
2023-01-02 22:03:59 +01:00
<file>tests</file>
2021-04-08 19:23:19 +02:00
<file>src</file>
<!-- Include all rules from the Zend Coding Standard -->
2023-01-10 10:42:36 +01:00
<!-- rule ref="OpsWayStrictPSR12CodingStandard"> -->
<rule ref="PSR12">
2023-01-02 22:03:59 +01:00
<exclude name="Generic.NamingConventions.CamelCapsVariableName.Invalid" />
<exclude name="Squiz.NamingConventions.ValidVariableName" />
2023-01-10 10:42:36 +01:00
<!-- <exclude name="WebimpressCodingStandard.NamingConventions.ValidVariableName" /> -->
2023-01-02 22:03:59 +01:00
</rule>
2021-04-08 19:23:19 +02:00
</ruleset>