-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
21 lines (21 loc) · 882 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="Main">
<rule ref="PSR12">
<exclude name="Generic.Files.LineLength"/>
<exclude name="Generic.Files.LineEndings"/>
<exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
</rule>
<rule ref="Squiz.Classes.ValidClassName.NotCamelCaps">
<exclude-pattern>*/Src/migrations/*</exclude-pattern>
</rule>
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>*/Src/migrations/*</exclude-pattern>
</rule>
<rule ref="Generic.Arrays.DisallowLongArraySyntax">
</rule >
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/Tests/_output/*</exclude-pattern>
<exclude-pattern>*/Tests/_bootstrap.php</exclude-pattern>
<exclude-pattern>*/Tests/_support/*</exclude-pattern>
<exclude-pattern>*\.(inc|css|js)</exclude-pattern>
</ruleset>