-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
29 lines (22 loc) · 863 Bytes
/
phpcs.xml.dist
File metadata and controls
29 lines (22 loc) · 863 Bytes
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
<?xml version="1.0"?>
<ruleset name="Bluem">
<description>Project PHPCS rules with narrow exceptions for the legacy public API.</description>
<config name="ignore_warnings_on_exit" value="1" />
<file>src</file>
<file>tests</file>
<file>examples</file>
<file>rector.php</file>
<exclude-pattern>vendor/*</exclude-pattern>
<rule ref="PSR12">
<exclude name="PSR12.Files.FileHeader.IncorrectOrder" />
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName">
<exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps" />
</rule>
<rule ref="PSR2.Methods.MethodDeclaration">
<exclude name="PSR2.Methods.MethodDeclaration.Underscore" />
</rule>
<rule ref="PSR2.Classes.PropertyDeclaration">
<exclude name="PSR2.Classes.PropertyDeclaration.Underscore" />
</rule>
</ruleset>