-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
29 lines (24 loc) · 836 Bytes
/
phpcs.xml.dist
File metadata and controls
29 lines (24 loc) · 836 Bytes
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
<?xml version="1.0"?>
<ruleset name="Coding Standard for REST API Strict Origin plugin">
<description>Coding Standard for REST API Strict Origin 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.8"/>
<!-- The minimum PHP requirement. -->
<config name="testVersion" value="8.0-"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="rest-api-same-origin"/>
</property>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="Required\RestApiStrictOrigin"/>
</property>
</properties>
</rule>
</ruleset>