-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
executable file
·27 lines (23 loc) · 813 Bytes
/
phpcs.xml
File metadata and controls
executable file
·27 lines (23 loc) · 813 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
<?xml version="1.0"?>
<ruleset name="Coding standard">
<description>Coding standard</description>
<!-- display progress -->
<arg name="colors"/>
<!-- inherit rates from: -->
<rule ref="PSR2"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
<properties>
<property name="ignoreBlankLines" id="false"/>
</properties>
</rule>
<!-- Paths to check -->
<!-- <file>config</file>-->
<file>src</file>
<!-- <file>templates</file>-->
<file>tests</file>
<!-- Exclude patterns -->
<!-- <exclude-pattern>config/cli-config.php</exclude-pattern>-->
<!-- <exclude-pattern>config/routes.php</exclude-pattern>-->
<exclude-pattern>tests/Bootstrap.php</exclude-pattern>
</ruleset>