-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathphpcs.xml
More file actions
16 lines (14 loc) · 626 Bytes
/
phpcs.xml
File metadata and controls
16 lines (14 loc) · 626 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="drush">
<description>Default PHP CodeSniffer configuration for Drush project.</description>
<file>src</file>
<file>examples</file>
<file>tests</file>
<rule ref="PSR12"/>
<!-- Keep us sane-->
<rule ref="Generic.ControlStructures.InlineControlStructure.NotAllowed"><severity>0</severity></rule>
<rule ref="PSR2.Methods.MethodDeclaration.Underscore"><severity>0</severity></rule>
<rule ref="PSR12.Files.FileHeader.IncorrectOrder"><severity>0</severity></rule>
<arg name="warning-severity" value="0"/>
<arg value="s" />
</ruleset>