-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
55 lines (45 loc) · 1.62 KB
/
phpcs.xml.dist
File metadata and controls
55 lines (45 loc) · 1.62 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0"?>
<ruleset name="iframe-resizer for HTML Block">
<description>Coding Standard for the "iframe-resizer for HTML Block" plugin.</description>
<file>.</file>
<rule ref="Required-Strict"/>
<!-- The minimum supported WordPress version for all sniffs which use it. -->
<config name="minimum_supported_wp_version" value="6.3"/>
<!-- The minimum PHP requirement. -->
<config name="testVersion" value="8.0-"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="iframe-resizer-for-html-block"/>
</property>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="Required\IframeResizerForHtmlBlock"/>
<element value="iframe_resizer_for_html_block"/>
</property>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.Commenting.ForbiddenAnnotations">
<properties>
<property name="forbiddenAnnotations" type="array" extend="true">
<element value="@since"/>
</property>
</properties>
</rule>
<!-- Used in block render files. -->
<rule ref="VariableAnalysis.CodeAnalysis.VariableAnalysis">
<properties>
<property name="validUndefinedVariableNames" value="attributes block"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound">
<exclude-pattern>/assets/src/*</exclude-pattern>
</rule>
<rule ref="WordPress.WP.GlobalVariablesOverride.Prohibited">
<exclude-pattern>/assets/src/*</exclude-pattern>
</rule>
<exclude-pattern>/assets/dist/*</exclude-pattern>
</ruleset>