Created
February 22, 2016 00:40
-
-
Save kujiy/175d3ae6f45fb1648adf to your computer and use it in GitHub Desktop.
php-cs-fixer-ruleset.xml
This file contains 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
<ruleset name="Custom Standard"> | |
<description>My custom coding standard</description> | |
<rule ref="PSR2"> | |
<exclude name="Generic.Functions.FunctionCallArgumentSpacing.TooMuchSpaceAfterComma"/> | |
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect"/> | |
<exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact"/> | |
<exclude name="Generic.Files.LineLength.TooLong"/> | |
<exclude name="Generic.Files.LineEndings.InvalidEOLChar"/> | |
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/> | |
<exclude name="Squiz.Functions.MultiLineFunctionDeclaration.SpaceBeforeOpenParen"/> | |
<exclude name="PSR2.Files.EndFileNewline.TooMany"/> | |
<exclude name="PSR2.Methods.FunctionCallSignature.ContentAfterOpenBracket"/> | |
<exclude name=""/> | |
<exclude name=""/> | |
<exclude name=""/> | |
<exclude name=""/> | |
<exclude name=""/> | |
<exclude name=""/> | |
</rule> | |
</ruleset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment