-
Notifications
You must be signed in to change notification settings - Fork 10
/
phpcs.xml
19 lines (19 loc) · 1.03 KB
/
phpcs.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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer" xsi:noNamespaceSchemaLocation="phpcs.xsd">
<rule ref="PEAR">
<exclude name="PEAR.Commenting.FileComment.Missing" />
<exclude name="PEAR.Commenting.ClassComment.Missing" />
<exclude name="PEAR.Commenting.FunctionComment.Missing" />
<exclude name="PEAR.Commenting.FunctionComment.MissingParamTag" />
<exclude name="PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps" />
<exclude name="PEAR.WhiteSpace.ScopeIndent.IncorrectExact" />
<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket" />
<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine" />
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<exclude name="Generic.Files.LineLength.TooLong" />
</rule>
<rule ref="Generic.Commenting.DocComment.MissingShort">
<exclude name="Generic.Commenting.DocComment.MissingShort" />
</rule>
</ruleset>