-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpcs.ruleset.xml
29 lines (28 loc) · 1.22 KB
/
phpcs.ruleset.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
<?xml version="1.0"?>
<ruleset name="zbp-app-validator" namespace="Zsxsoft\AppValidator">
<description>
PHP Standard for zbp-app-validator
</description>
<exclude-pattern>tmp/*</exclude-pattern>
<rule ref="PEAR">
<exclude name="PEAR.Commenting.FileComment.Missing" />
<exclude name="PEAR.Commenting.FileComment.MissingCategoryTag" />
<exclude name="PEAR.Commenting.FileComment.MissingPackageTag" />
<exclude name="PEAR.Commenting.FileComment.MissingAuthorTag" />
<exclude name="PEAR.Commenting.FileComment.MissingLinkTag" />
<exclude name="PEAR.Commenting.FileComment.MissingLicenseTag" />
<exclude name="PEAR.Commenting.ClassComment.Missing" />
<exclude name="PEAR.Commenting.FunctionComment.Missing" />
<exclude name="PEAR.Commenting.InlineComment.Missing" />
<exclude name="PEAR.Commenting.FunctionComment.MissingParamComment" />
<exclude name="PEAR.Commenting.FunctionComment.Missing" />
<exclude name="PEAR.Commenting.FunctionComment.MissingReturn" />
<exclude name="PEAR.Commenting.FunctionComment.MissingParamTag" />
</rule>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="200" />
<property name="absoluteLineLimit" value="0" />
</properties>
</rule>
</ruleset>