forked from mtoensing/simpletoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml.dist
35 lines (29 loc) · 866 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
34
35
<?xml version="1.0"?>
<ruleset name="Simple TOC">
<description>Coding Standard for the "Simple TOC" plugin.</description>
<file>.</file>
<rule ref="Required"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="simpletoc-block"/>
</property>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="Required\Blocks\SimpleTOC"/>
<element value="simpletoc_block"/>
</property>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.Commenting.ForbiddenAnnotations">
<properties>
<property name="forbiddenAnnotations" type="array" extend="true">
<element value="@since"/>
</property>
</properties>
</rule>
<exclude-pattern>/assets/*</exclude-pattern>
</ruleset>