-
Notifications
You must be signed in to change notification settings - Fork 60
/
phpcs.xml
30 lines (24 loc) · 1.09 KB
/
phpcs.xml
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
30
<?xml version="1.0"?>
<ruleset name="Magento 2 Deployer Plus Coding Standards">
<description>Magento 2 Deployer Plus Coding Standards</description>
<arg name="report" value="full"/>
<arg name="colors"/>
<arg value="sp"/>
<ini name="memory_limit" value="32M"/>
<autoload>vendor/autoload.php</autoload>
<rule ref="PSR2">
</rule>
<rule ref="Generic">
<exclude name="Generic.WhiteSpace"/>
<exclude name="Generic.Files.EndFileNoNewline.Found"/>
<exclude name="Generic.PHP.ClosingPHPTag.NotFound"/>
<exclude name="Generic.Formatting.SpaceAfterCast"/>
<exclude name="Generic.Formatting.SpaceAfterNot"/>
<exclude name="Generic.Formatting.SpaceAfterNot.Incorrect"/>
<exclude name="Generic.Arrays.DisallowShortArraySyntax.Found"/>
<exclude name="Generic.PHP.UpperCaseConstant"/>
<exclude name="Generic.Formatting.MultipleStatementAlignment.NotSameWarning"/>
<exclude name="Generic.Strings.UnnecessaryStringConcat.Found"/>
<exclude name="Generic.Files.LineLength.TooLong"/>
</rule>
</ruleset>