-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
22 lines (20 loc) · 851 Bytes
/
phpcs.xml.dist
File metadata and controls
22 lines (20 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<ruleset
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"
name="Custom">
<file>./src/</file>
<file>./tests/</file>
<exclude-pattern>./tests/_data/</exclude-pattern>
<exclude-pattern>./tests/_output/</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/unit/Task/BaseCliTaskTestBase.php</exclude-pattern>
<exclude-pattern>./tests/unit/Task/TaskTestBase.php</exclude-pattern>
</rule>
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>./RoboFile.php</exclude-pattern>
</rule>
</ruleset>