You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.2 KiB
72 lines
2.2 KiB
7 years ago
|
<?xml version="1.0"?>
|
||
|
<ruleset name="Roots">
|
||
|
<description>Roots Coding Standards</description>
|
||
|
|
||
|
<!-- Scan these files -->
|
||
|
<file>resources/functions.php</file>
|
||
|
<file>resources/index.php</file>
|
||
|
<file>app</file>
|
||
|
<file>resources/views</file>
|
||
|
|
||
|
<!-- Show colors in console -->
|
||
|
<arg value="-colors"/>
|
||
|
|
||
|
<!-- Show sniff codes in all reports -->
|
||
|
<arg value="s"/>
|
||
|
|
||
|
<!-- Use PSR-2 as a base -->
|
||
|
<rule ref="PSR2"/>
|
||
|
|
||
|
<!-- Exclusions below are for resources/views/ folder -->
|
||
|
|
||
|
<!-- Allow php files without any PHP in them -->
|
||
|
<rule ref="Internal.NoCodeFound">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Allow braces on same line for named functions -->
|
||
|
<rule ref="Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Allow closing braces to be on the same line -->
|
||
|
<rule ref="Squiz.WhiteSpace.ScopeClosingBrace">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Disable newline after opening brace -->
|
||
|
<rule ref="Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Allow multiple PHP statements in the same line -->
|
||
|
<rule ref="Generic.Formatting.DisallowMultipleStatements.SameLine">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Disable PSR-2 indentation rules that are buggy with 2 spaces -->
|
||
|
<rule ref="PSR2.ControlStructures.SwitchDeclaration.BreakIndent">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Don't require a blank line after the last `use` -->
|
||
|
<rule ref="PSR2.Namespaces.UseDeclaration.SpaceAfterLastUse">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Allow long lines -->
|
||
|
<rule ref="Generic.Files.LineLength.TooLong">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Ignore indentation rules -->
|
||
|
<rule ref="Generic.WhiteSpace.ScopeIndent">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
|
||
|
<!-- Allow PHP closing tags -->
|
||
|
<rule ref="PSR2.Files.ClosingTag.NotAllowed">
|
||
|
<exclude-pattern>resources/views</exclude-pattern>
|
||
|
</rule>
|
||
|
</ruleset>
|