-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruleset.xml
More file actions
executable file
·63 lines (55 loc) · 2.23 KB
/
ruleset.xml
File metadata and controls
executable file
·63 lines (55 loc) · 2.23 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
<?xml version="1.0"?>
<ruleset name="php-genesis">
<description>Coding standard used for the PHP Applications.</description>
<file>./src</file>
<file>./tests</file>
<arg name="extensions" value="php" />
<arg name="standard" value="PSR2" />
<rule ref="rulesets/codesize.xml"/>
<rule ref="rulesets/controversial.xml/Superglobals"/>
<rule ref="rulesets/controversial.xml/CamelCaseClassName"/>
<rule ref="rulesets/controversial.xml/CamelCasePropertyName">
<properties>
<property name="allow-underscore" value="true"/>
<property name="allow-underscore-test" value="true"/>
</properties>
</rule>
<rule ref="rulesets/controversial.xml/CamelCaseMethodName">
<properties>
<property name="allow-underscore" value="true"/>
<property name="allow-underscore-test" value="true"/>
</properties>
</rule>
<rule ref="rulesets/controversial.xml/CamelCaseParameterName">
<properties>
<property name="allow-underscore" value="true"/>
<property name="allow-underscore-test" value="true"/>
</properties>
</rule>
<rule ref="rulesets/controversial.xml/CamelCaseVariableName">
<properties>
<property name="allow-underscore" value="true"/>
<property name="allow-underscore-test" value="true"/>
</properties>
</rule>
<rule ref="rulesets/design.xml"/>
<rule ref="rulesets/naming.xml/ShortVariable">
<properties>
<property name="minimum" value="2"/>
</properties>
</rule>
<rule ref="rulesets/naming.xml/LongVariable">
<properties>
<property name="maximum" value="40"/>
</properties>
</rule>
<rule ref="rulesets/naming.xml/ShortMethodName"/>
<rule ref="rulesets/naming.xml/ConstructorWithNameAsEnclosingClass"/>
<rule ref="rulesets/naming.xml/ConstantNamingConventions"/>
<rule ref="rulesets/naming.xml/BooleanGetMethodName"/>
<rule ref="rulesets/naming.xml/LongClassName"/>
<rule ref="rulesets/naming.xml/ShortClassName"/>
<rule ref="rulesets/unusedcode.xml"/>
<exclude-pattern>src/Kernel.php</exclude-pattern>
<exclude-pattern>src/Migrations/*</exclude-pattern>
</ruleset>