Files
xkcd-Mailer/phpcs.xml.dist
Ismo Vuorinen 04186912b3 1.0.0
for real this time?
2021-11-12 17:54:18 +02:00

23 lines
752 B
XML

<?xml version="1.0"?>
<ruleset
name="PHP_CodeSniffer"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd"
>
<description>PHP Code Sniffer configuration file.</description>
<file>.</file>
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="10"/>
<!-- base rule: set to PSR12-->
<!-- https://www.php-fig.org/psr/psr-12/ -->
<!-- https://github.com/squizlabs/PHP_CodeSniffer/wiki/Customisable-Sniff-Properties -->
<rule ref="PSR12">
<exclude-pattern>*/vendor/*</exclude-pattern>
</rule>
</ruleset>