-
Notifications
You must be signed in to change notification settings - Fork 11
/
phpcs.xml.dist
33 lines (28 loc) · 1015 Bytes
/
phpcs.xml.dist
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
31
32
33
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards for plugins">
<description>Sniffs for WordPress plugins</description>
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="7.0-"/>
<rule ref="WordPress-Docs"/>
<rule ref="WordPress-Extra">
<exclude name="WordPress.Files.FileName"/>
<properties>
<property name="custom_capabilities" type="array">
<element value="edit_colors"/>
<element value="edit_layout"/>
<element value="edit_typography"/>
</property>
</properties>
</rule>
<rule ref="WordPress.WP.I18n"/>
<config name="text_domain" value="felixarntz-mu-plugins,default"/>
<arg value="ps"/>
<arg name="extensions" value="php"/>
<file>./felixarntz-mu-plugins</file>
<file>./felixarntz-mu-plugins.php</file>
<!--
Prevent errors caused by WordPress Coding Standards not supporting PHP 8.0+.
See https://github.com/WordPress/WordPress-Coding-Standards/issues/2035
-->
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED" />
</ruleset>