-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpcs.xml.dist
33 lines (27 loc) · 1.21 KB
/
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="WP Widget Disable">
<description>Coding Standard for WP Widget Disable plugin.</description>
<file>.</file>
<!-- The minimum supported WordPress version for all sniffs which use it. -->
<config name="minimum_supported_wp_version" value="6.0"/>
<!-- The minimum PHP requirement. -->
<config name="testVersion" value="7.4-"/>
<rule ref="Required">
<!-- Exclude till plugin minimum PHP version increases to 7.0. -->
<exclude name="SlevomatCodingStandard.ControlStructures.RequireNullCoalesceOperator"/>
</rule>
<!-- Verify that the text_domain is set to the desired text-domain.
Multiple valid text domains can be provided as a comma-delimited list. -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="wp-widget-disable" />
</properties>
</rule>
<!-- Define both prefixes for functions and hooks. -->
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array" value="widget_disable,WP_Widget_Disable"/>
</properties>
</rule>
<exclude-pattern>*/tests/*</exclude-pattern>
</ruleset>