Files
1ab4b7cb1b fix(php_codesniffer): Ignore config/reference.php (#1981)
* 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>
2026-05-19 15:26:36 +04:00

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>