mirror of
https://github.com/ivuorinen/xkcd-Mailer.git
synced 2026-01-26 03:04:01 +00:00
23 lines
752 B
XML
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>
|