-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml
33 lines (28 loc) · 1.1 KB
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0"?>
<ruleset name="Slim-MVC-Skeleton PHP Coding Standard">
<description>Slim-MVC-Skeleton PHP Coding Standard.</description>
<!-- Ignore Warning -->
<arg value="n"/>
<!-- Display Progress -->
<arg value="p"/>
<!-- Use Colors in Output -->
<arg name="colors"/>
<!-- Output Report Format -->
<!--<arg name="report" value="summary"/>-->
<!-- Output Report File -->
<!--<arg name="report-file" value="sniff-report.log"/> -->
<!-- Inherit Rules From: -->
<rule ref="PSR2"/>
<rule ref="Generic.Arrays.DisallowShortArraySyntax"/>
<rule ref="Generic.CodeAnalysis.JumbledIncrementer"/>
<rule ref="Generic.CodeAnalysis.UnconditionalIfStatement"/>
<rule ref="Generic.CodeAnalysis.UnnecessaryFinalModifier"/>
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.NamingConventions.ConstructorName"/>
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
<rule ref="Generic.WhiteSpace.DisallowTabIndent"/>
<!-- Paths to Check -->
<file>app</file>
<!-- Exclude Patterns -->
<exclude-pattern>*/tests/*</exclude-pattern>
</ruleset>