Last active
January 2, 2016 16:09
-
-
Save makerneo-com/8328485 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <ruleset name="PHP_Codesniffer Plugins PHPCS"> | |
| <rule ref="PSR"/> | |
| <rule ref="PSR1"/> | |
| <rule ref="PSR2"/> | |
| <rule ref="Generic.Files.ByteOrderMark"/> | |
| <!-- Use Unix newlines --> | |
| <rule ref="Generic.Files.LineEndings"> | |
| <properties> | |
| <property name="eolChar" value="\n"/> | |
| </properties> | |
| </rule> | |
| <!-- Lines can be 80 chars long, show errors at 120 chars --> | |
| <!-- <rule ref="Generic.Files.LineLength"> --> | |
| <!-- <properties> --> | |
| <!-- <property name="lineLimit" value="80"/> --> | |
| <!-- <property name="absoluteLineLimit" value="120"/> --> | |
| <!-- </properties> --> | |
| <!-- </rule> --> | |
| <rule ref="Generic.PHP.DisallowShortOpenTag"/> | |
| <!-- <rule ref="Generic"> --> | |
| <!-- <exclude-pattern></exclude-pattern> --> | |
| <!-- <exclude name="Generic."/> --> | |
| <!-- </rule> --> | |
| <rule ref="PEAR"> | |
| <exclude name="PEAR.WhiteSpace.ScopeIndent"/> | |
| <exclude name="PEAR.NamingConventions.ValidVariableName"/> | |
| </rule> | |
| <rule ref="Squiz.Strings.DoubleQuoteUsage.ContainsVar"> | |
| <severity>0</severity> | |
| </rule> | |
| <!-- done --> | |
| <rule ref="Generic.Commenting.Fixme"/> | |
| <rule ref="Generic.Commenting.Todo"/> | |
| <rule ref="Generic.CodeAnalysis.VariableAnalysis"/> | |
| </ruleset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment