generated from figuren-theater/new-ft-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpcs.xml
41 lines (32 loc) · 1.1 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
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0"?>
<ruleset name="theater-production-blocks">
<description>Coding standards for theater-production-blocks</description>
<file>.</file>
<arg name="basepath" value="./"/><!-- Strip the file paths down to the relevant bit -->
<exclude-pattern>*/build/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Use figuren.theater Coding Standards -->
<rule ref="figurentheater" />
<!-- <rule ref="HM.Files.NamespaceDirectoryName.NoIncDirectory">
<exclude-pattern>*/src/*</exclude-pattern>
</rule> -->
<!-- <rule ref="HM.Files.NamespaceDirectoryName.NoIncDirectory">
<exclude-pattern>*/src/*</exclude-pattern>
</rule> -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="theater-production-blocks"/>
</property>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="wpt"/>
<element value="Figuren_Theater"/>
<element value="__NAMESPACE__"/>
</property>
</properties>
</rule>
</ruleset>