-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypear.xml
19 lines (19 loc) · 1.13 KB
/
mypear.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<ruleset name="myPEAR">
<description>My coding standard based on the PEAR coding standard with just some rules excluded.</description>
<rule ref="PEAR">
<exclude name="PEAR.WhiteSpace.ScopeIndent" />
<exclude name="Generic.Files.LineLength.TooLong" />
<exclude name="PEAR.Commenting.FileComment" />
<exclude name="Squiz.Commenting.DocCommentAlignment.SpaceBeforeStar" />
<exclude name="PEAR.Commenting.FunctionComment.SpacingAfterParamName" />
<exclude name="Generic.Commenting.DocComment.TagValueIndent" />
<exclude name="PEAR.Commenting.ClassComment.MissingCategoryTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingPackageTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingAuthorTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingLicenseTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingLinkTag" />
<exclude name="PEAR.NamingConventions.ValidVariableName.PrivateNoUnderscore" />
<exclude name="PEAR.NamingConventions.ValidFunctionName.PrivateNoUnderscore" />
</rule>
</ruleset>