-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml.dist
25 lines (21 loc) · 905 Bytes
/
phpcs.xml.dist
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
<?xml version="1.0"?>
<ruleset
name="Custom"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/squizlabs/php_codesniffer/phpcs.xsd">
<file>./src/</file>
<file>./tests/</file>
<exclude-pattern>./tests/_data/</exclude-pattern>
<exclude-pattern>./tests/_log/</exclude-pattern>
<exclude-pattern>./tests/_support/generated</exclude-pattern>
<file>./RoboFile.php</file>
<rule ref="PSR2" />
<rule ref="PSR2.Methods.MethodDeclaration.Underscore">
<exclude-pattern>./tests/*/*.php</exclude-pattern>
<exclude-pattern>./tests/_support/Helper/Acceptance.php</exclude-pattern>
<exclude-pattern>./tests/_support/Helper/Unit.php</exclude-pattern>
</rule>
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>./RoboFile.php</exclude-pattern>
</rule>
</ruleset>