-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
30 lines (25 loc) · 1.12 KB
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<ruleset name="Radicle">
<description>PSR12 with PHP 8.0+ compatibility</description>
<arg name="extensions" value="php"/>
<arg name="colors"/>
<arg value="sp"/>
<!-- PHP compatibility takes precedent over PSR12 -->
<rule ref="PHPCompatibility"/>
<rule ref="PSR12"/>
<!-- Support for PHP 8.0+ -->
<config name="testVersion" value="8.0-"/>
<!-- Include the current directory -->
<file>.</file>
<!-- Ignore WordPress and Composer dependencies -->
<exclude-pattern>node_modules/</exclude-pattern>
<exclude-pattern>public/content/mu-plugins/bedrock-autoloader.php</exclude-pattern>
<exclude-pattern>public/content/mu-plugins/bedrock-disallow-indexing/</exclude-pattern>
<exclude-pattern>public/content/mu-plugins/soil/</exclude-pattern>
<exclude-pattern>public/content/plugins/</exclude-pattern>
<exclude-pattern>public/wp</exclude-pattern>
<exclude-pattern>vendor/</exclude-pattern>
<!-- Ignore storage and resources directory -->
<exclude-pattern>storage/</exclude-pattern>
<exclude-pattern>resources/</exclude-pattern>
</ruleset>