mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 15:16:55 +03:00
* Exclude reference.php from PHP CodeSniffer ruleset * Apply suggestion from @jrfnl Co-authored-by: Juliette <663378+jrfnl@users.noreply.github.com> --------- Co-authored-by: Dmitri Perunov <diimpp@gmail.com> Co-authored-by: Juliette <663378+jrfnl@users.noreply.github.com>
22 lines
556 B
XML
22 lines
556 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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"/>
|
|
|
|
<rule ref="PSR12"/>
|
|
|
|
<file>bin/</file>
|
|
<file>config/</file>
|
|
<file>public/</file>
|
|
<file>src/</file>
|
|
<file>tests/</file>
|
|
|
|
<exclude-pattern>config/reference\.php$</exclude-pattern>
|
|
|
|
</ruleset>
|