-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpcs.xml
128 lines (108 loc) · 4.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="phpList Coding Standard">
<description>
This standard requires PHP_CodeSniffer >= 3.5.3.
</description>
<arg name="colors" />
<arg name="extensions" value="php" />
<!--The complete PSR-12 rule set-->
<rule ref="PSR12" />
<!-- Arrays -->
<rule ref="Generic.Arrays.DisallowLongArraySyntax" />
<rule ref="Squiz.Arrays.ArrayBracketSpacing" />
<!-- Classes -->
<rule ref="Generic.Classes.DuplicateClassName" />
<rule ref="PSR1.Classes.ClassDeclaration" />
<rule ref="Squiz.Classes.ClassFileName" />
<rule ref="Squiz.Classes.DuplicateProperty" />
<rule ref="Squiz.Classes.LowercaseClassKeywords" />
<rule ref="Squiz.Classes.SelfMemberReference" />
<!-- Code analysis -->
<rule ref="Generic.CodeAnalysis.AssignmentInCondition" />
<rule ref="Generic.CodeAnalysis.EmptyStatement" />
<rule ref="Generic.CodeAnalysis.ForLoopShouldBeWhileLoop" />
<rule ref="Generic.CodeAnalysis.ForLoopWithTestFunctionCall" />
<rule ref="Generic.CodeAnalysis.JumbledIncrementer" />
<rule ref="Generic.CodeAnalysis.UnconditionalIfStatement" />
<rule ref="Generic.CodeAnalysis.UnnecessaryFinalModifier" />
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod" />
<!-- Commenting -->
<rule ref="Generic.Commenting.Fixme" />
<rule ref="Generic.Commenting.Todo" />
<rule ref="PEAR.Commenting.InlineComment" />
<rule ref="Squiz.Commenting.DocCommentAlignment" />
<rule ref="Squiz.Commenting.EmptyCatchComment" />
<rule ref="Squiz.Commenting.FunctionCommentThrowTag" />
<rule ref="Squiz.Commenting.PostStatementComment" />
<!-- Control structures -->
<rule ref="PEAR.ControlStructures.ControlSignature" />
<!-- Debug -->
<rule ref="Generic.Debug.ClosureLinter" />
<!-- Files -->
<rule ref="Generic.Files.LineLength">
<exclude-pattern>Configuration/TCA/</exclude-pattern>
</rule>
<rule ref="Generic.Files.OneClassPerFile" />
<rule ref="Generic.Files.OneInterfacePerFile" />
<rule ref="Generic.Files.OneObjectStructurePerFile" />
<rule ref="Zend.Files.ClosingTag" />
<!-- Formatting -->
<rule ref="PEAR.Formatting.MultiLineAssignment" />
<!-- Functions -->
<rule ref="Generic.Functions.CallTimePassByReference" />
<rule ref="Squiz.Functions.FunctionDuplicateArgument" />
<rule ref="Squiz.Functions.GlobalFunction" />
<!-- Methods -->
<rule ref="PSR2.Methods.MethodDeclaration.Underscore" />
<!-- Metrics -->
<rule ref="Generic.Metrics.CyclomaticComplexity" />
<rule ref="Generic.Metrics.NestingLevel" />
<!-- Naming conventions -->
<rule ref="Generic.NamingConventions.ConstructorName" />
<rule ref="PEAR.NamingConventions.ValidClassName" />
<!-- Objects -->
<rule ref="Squiz.Objects.ObjectMemberComma" />
<!-- Operators -->
<rule ref="Squiz.Operators.IncrementDecrementUsage" />
<rule ref="Squiz.Operators.ValidLogicalOperators" />
<!-- PHP -->
<rule ref="Generic.PHP.BacktickOperator" />
<rule ref="Generic.PHP.CharacterBeforePHPOpeningTag" />
<rule ref="Generic.PHP.DeprecatedFunctions" />
<rule ref="Generic.PHP.DisallowAlternativePHPTags" />
<rule ref="Generic.PHP.DisallowShortOpenTag" />
<rule ref="Generic.PHP.DiscourageGoto" />
<rule ref="Generic.PHP.ForbiddenFunctions" />
<rule ref="Generic.PHP.NoSilencedErrors" />
<rule ref="Squiz.PHP.CommentedOutCode">
<properties>
<property name="maxPercentage" value="70" />
</properties>
</rule>
<rule ref="Squiz.PHP.DisallowMultipleAssignments" />
<rule ref="Squiz.PHP.DisallowSizeFunctionsInLoops" />
<rule ref="Squiz.PHP.DiscouragedFunctions" />
<rule ref="Squiz.PHP.Eval" />
<rule ref="Squiz.PHP.GlobalKeyword" />
<rule ref="Squiz.PHP.Heredoc" />
<rule ref="Squiz.PHP.InnerFunctions" />
<rule ref="Squiz.PHP.LowercasePHPFunctions" />
<rule ref="Squiz.PHP.NonExecutableCode" />
<!-- Scope -->
<rule ref="Squiz.Scope.MemberVarScope" />
<rule ref="Squiz.Scope.StaticThisUsage" />
<!--Strings-->
<rule ref="Squiz.Strings.DoubleQuoteUsage" />
<!-- Whitespace -->
<rule ref="PEAR.WhiteSpace.ObjectOperatorIndent" />
<rule ref="PEAR.WhiteSpace.ScopeClosingBrace" />
<rule ref="Squiz.WhiteSpace.CastSpacing" />
<rule ref="Squiz.WhiteSpace.LogicalOperatorSpacing" />
<rule ref="Squiz.WhiteSpace.OperatorSpacing">
<properties>
<property name="ignoreNewlines" value="true" />
</properties>
</rule>
<rule ref="Squiz.WhiteSpace.PropertyLabelSpacing" />
<rule ref="Squiz.WhiteSpace.SemicolonSpacing" />
</ruleset>