forked from lukaszaleckas/laravel-fallback-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
54 lines (45 loc) · 2.19 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="laravel-fallback-cache"
xmlns="http://pmd.sf.net/ruleset/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
<config name="installed_paths" value="../../slevomat/coding-standard"/>
<rule ref="PSR12"/>
<rule ref="Squiz.Commenting.FunctionComment">
<!-- requires text after param -->
<exclude name="Squiz.Commenting.FunctionComment.MissingParamComment"/>
<!-- requires boolean & integer instead of PSR-12 short syntax -->
<exclude name="Squiz.Commenting.FunctionComment.IncorrectParamVarName"/>
<!-- requires boolean & integer instead of PSR-12 short syntax -->
<exclude name="Squiz.Commenting.FunctionComment.InvalidReturn"/>
<!-- requires boolean & integer instead of PSR-12 short syntax -->
<exclude name="Squiz.Commenting.FunctionComment.IncorrectParamVarName"/>
</rule>
<rule ref="PSR2">
<exclude name="PSR1.Methods.CamelCapsMethodName"/>
</rule>
<rule ref="Generic.Metrics.CyclomaticComplexity">
<properties>
<property name="complexity" value="10"/>
</properties>
</rule>
<rule ref="Squiz.Commenting.FunctionCommentThrowTag">
<exclude name="Squiz.Commenting.FunctionComment.EmptyThrows"/>
</rule>
<rule ref="Squiz.Commenting.VariableComment">
<exclude name="Squiz.Commenting.VariableComment.IncorrectVarType"/>
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.UnusedUses">
<properties>
<property name="searchAnnotations" type="bool" value="true"/>
</properties>
</rule>
<rule ref="Generic.Formatting.MultipleStatementAlignment"/>
<rule ref="Squiz.Arrays.ArrayDeclaration.DoubleArrowNotAligned" />
<rule ref="SlevomatCodingStandard.Classes.UnusedPrivateElements"/>
<rule ref="SlevomatCodingStandard.Variables.UnusedVariable"/>
<rule ref="SlevomatCodingStandard.Exceptions.DeadCatch"/>
<file>./src</file>
<file>./tests</file>
</ruleset>