forked from awesomemotive/easy-digital-downloads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml.dist
51 lines (42 loc) · 1.86 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards for Easy Digital Downloads">
<config name="testVersion" value="7.4-"/>
<config name="minimum_supported_wp_version" value="5.8-" />
<config name="text_domain" value="easy-digital-downloads"/>
<rule ref="PHPCompatibility">
<exclude name="PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore" />
</rule>
<rule ref="WordPress-Core">
<exclude name="Generic.Commenting.DocComment.MissingShort" />
<exclude name="Generic.NamingConventions.CamelCapsFunctionName.MethodDoubleUnderscore" />
<exclude name="Generic.Commenting.DocComment.MissingShort" />
<exclude name="Generic.Commenting.DocComment.ShortNotCapital" />
<exclude name="Squiz.Commenting.FunctionComment.MissingParamTag" />
<exclude name="Squiz.Commenting.FileComment.Missing" />
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore" />
</rule>
<rule ref="WordPress-Docs"/>
<rule ref="WordPress.WP.I18n"/>
<rule ref="PEAR.Functions.FunctionCallSignature">
<properties>
<property name="allowMultipleArguments" value="false"/>
</properties>
</rule>
<arg value="ps"/>
<arg name="extensions" value="php"/>
<file>easy-digital-downloads.php</file>
<file>i18n</file>
<file>includes</file>
<file>src</file>
<file>templates</file>
<exclude-pattern>*/assets/*</exclude-pattern>
<exclude-pattern>*/bin/*</exclude-pattern>
<exclude-pattern>*/build/*</exclude-pattern>
<exclude-pattern>*/languages/*</exclude-pattern>
<exclude-pattern>*/libraries/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
</ruleset>