-
Notifications
You must be signed in to change notification settings - Fork 17
/
phpcs.xml
36 lines (31 loc) · 1.04 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
<?xml version="1.0"?>
<ruleset name="Foo Bar Coding Standards">
<arg name="extensions" value="php" />
<arg name="colors" />
<arg name="parallel" value="16" />
<arg value="s" />
<rule ref="WordPress-Core">
<exclude name="Generic.Arrays.DisallowShortArraySyntax" />
<exclude name="PSR2.Classes.PropertyDeclaration.Underscore" />
<exclude name="Squiz.PHP.CommentedOutCode.Found" />
<exclude name="WordPress.WP.TimezoneChange" />
</rule>
<rule ref="WordPress-Extra"/>
<rule ref="WordPress-Docs" />
<rule ref="WordPress-VIP-Go"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="foo-bar" />
</property>
</properties>
</rule>
<rule ref="PHPCompatibilityWP" />
<config name="testVersion" value="5.6-" />
<file>.</file>
<exclude-pattern>*/assets/*</exclude-pattern>
<exclude-pattern>*/bin/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/tests/coverage/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
</ruleset>