-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpcs.xml
28 lines (24 loc) · 1.09 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
<?xml version="1.0"?>
<ruleset name="animation-filters" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
<description>Custom ruleset for the Build Processes Demo site child theme.</description>
<!-- Extend the A8CTeam51 ruleset. -->
<rule ref="vendor/a8cteam51/team51-configs/quality-tools/phpcs.xml.dist"/>
<!-- Check that the proper text domain(s) is used everywhere. -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="animation-filters"/> <!-- Change this value to your theme slug. -->
</property>
</properties>
</rule>
<!-- Check that the proper prefix is used everywhere. -->
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="animation_filters"/> <!-- Change this value to your theme prefix. -->
<element value="afp"/> <!-- Change this value to your theme prefix. -->
</property>
</properties>
</rule>
<!-- Add any other custom rules here. -->
</ruleset>