-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpcs.xml
31 lines (27 loc) · 1.03 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
31
<?xml version="1.0"?>
<ruleset name="cakephp-database-backup">
<arg value="p"/>
<arg name="colors"/>
<file>.</file>
<rule ref="./vendor/cakephp/cakephp-codesniffer/CakePHP/ruleset.xml"/>
<rule ref="CakePHP.Commenting.TypeHint.IncorrectFormat">
<severity>0</severity>
</rule>
<rule ref="CakePHP.Functions.ClosureDeclaration.SpaceAfterFunction">
<severity>0</severity>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<severity>0</severity>
</rule>
<rule ref="PSR12.ControlStructures.ControlStructureSpacing">
<severity>0</severity>
</rule>
<rule ref="SlevomatCodingStandard.Classes.ModernClassNameReference.ClassNameReferencedViaMagicConstant">
<severity>0</severity>
</rule>
<rule ref="SlevomatCodingStandard.Commenting.DocCommentSpacing.IncorrectLinesCountBetweenDescriptionAndAnnotations">
<severity>0</severity>
</rule>
<exclude-pattern>/coverage/</exclude-pattern>
<exclude-pattern>/vendor</exclude-pattern>
</ruleset>