Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
Latest commit
73 lines (64 loc) · 2.15 KB
/
Copy pathphpcs.xml
File metadata and controls
73 lines (64 loc) · 2.15 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0"?>
<rulesetname="Coding Standard">
<argname="basepath"value="."/>
<argname="colors"/>
<argvalue="sp"/>
<argname="extensions"value="php"/>
<configname="ignore_warnings_on_exit"value="1"/>
<file>./bin</file>
<file>./src</file>
<file>./tests</file>
<file>./config</file>
<file>./public/index.php</file>
<ruleref="PSR2">
<excludename="Generic.WhiteSpace.DisallowTabIndent"/>
</rule>
<ruleref="Generic.WhiteSpace.DisallowSpaceIndent"/>
<ruleref="PSR12"></rule>
<ruleref="PSR12.Files.FileHeader">
<excludename="PSR12.Files.FileHeader.SpacingAfterBlock"/>
<type>warning</type>
<exclude-pattern>*/</exclude-pattern>
</rule>
<ruleref="PSR1.Files.SideEffects.FoundWithSymbols">
<exclude-pattern>./tests</exclude-pattern>
<severity>0</severity>
</rule>
<!--
<rule ref="Squiz.Commenting.ClassComment">
<exclude name="Squiz.Commenting.ClassComment.TagNotAllowed"/>
<type>warning</type>
<exclude-pattern>*/tests/</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.ClassComment.Missing">
<type>warning</type>
</rule>
<rule ref="Squiz.Commenting.FunctionComment.Missing">
<type>warning</type>
<exclude-pattern>*/config/</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FunctionComment.MissingParamTag">
<type>warning</type>
</rule>
<rule ref="Squiz.Commenting.FunctionComment.MissingParamComment">
<type>warning</type>
</rule>
-->
<ruleref="Generic.Files.LineLength.TooLong">
<severity>0</severity>
</rule>
<ruleref="Squiz.Commenting.FunctionComment.ParamCommentNotCapital">
<type>warning</type>
</rule>
<ruleref="Generic.Metrics.CyclomaticComplexity">
<properties>
<propertyname="absoluteComplexity"value="50"/>
</properties>
</rule>
<ruleref="Generic.Metrics.NestingLevel">
<properties>
<propertyname="nestingLevel"value="2"/>
<propertyname="absoluteNestingLevel"value="4"/>
</properties>
</rule>
</ruleset>