-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpcs.xml
27 lines (21 loc) · 903 Bytes
/
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
<?xml version="1.0"?>
<ruleset name="techdivision/import-product-grouped">
<!--
The TechDivision GmbH coding standard is using a mix of PSR-2
coding conventions and PEAR doc-block commenting rules.
-->
<description>TechDivision GmbH coding standard</description>
<!-- Define global exclude patterns -->
<exclude-pattern>*/doc/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/target/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Mainly use PSR2 coding standard -->
<rule ref="PSR2"/>
<!-- Include commenting sniffs from PEAR standard -->
<rule ref="PEAR.Commenting.FunctionComment"/>
<rule ref="PEAR.Commenting.InlineComment"/>
<!-- Include generic commenting sniffs -->
<rule ref="Generic.Commenting.Fixme"/>
<rule ref="Generic.Commenting.Todo"/>
</ruleset>