forked from origgami/CMB2-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
28 lines (23 loc) · 1001 Bytes
/
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="CMB2 Grid">
<description>The code standard for CMB2 Grid is WordPress.</description>
<!-- PHP cross-version compatibility -->
<config name="testVersion" value="5.3-99.0"/>
<rule ref="PHPCompatibility"/>
<!-- Code style -->
<rule ref="WordPress">
<exclude name="Generic.Files.LowercasedFilename" />
<exclude name="WordPress.NamingConventions" />
<exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines" />
<exclude name="WordPress.PHP.YodaConditions.NotYoda" />
<!-- Temporarily exclude documentation checks until all classes, methods and properties have been documented. -->
<exclude name="WordPress-Docs" />
</rule>
<!-- exclude the 'empty' index files from some documentation checks -->
<rule ref="Squiz.Commenting.FileComment.WrongStyle">
<exclude-pattern>*/index.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.InlineComment.SpacingAfter">
<exclude-pattern>*/index.php</exclude-pattern>
</rule>
</ruleset>