forked from mageplus/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
21 lines (18 loc) · 803 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="Magento">
<description>Magento coding standard, based on Zend coding standard</description>
<!-- exclude anything not related to application code -->
<exclude-pattern>*/Test/*</exclude-pattern>
<exclude-pattern>*/data/*</exclude-pattern>
<exclude-pattern>lib/Zend/*</exclude-pattern>
<exclude-pattern>lib/PEAR/*</exclude-pattern>
<exclude-pattern>lib/3Dsecure/*</exclude-pattern>
<exclude-pattern>lib/flex/*</exclude-pattern>
<exclude-pattern>lib/googlecheckout/*</exclude-pattern>
<exclude-pattern>lib/LinLibertineFont/*</exclude-pattern>
<exclude-pattern>lib/phpseclib/*</exclude-pattern>
<exclude-pattern>lib/Spyc/*</exclude-pattern>
<!-- include the Zend coding standard -->
<rule ref="ZEND"/>
<!-- include additional rules here -->
</ruleset>