You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
688 B
23 lines
688 B
<?xml version="1.0"?>
|
|
<ruleset name="Zend Framework coding standard">
|
|
<description>Zend Framework coding standard</description>
|
|
|
|
<!-- display progress -->
|
|
<arg value="p"/>
|
|
<arg name="colors"/>
|
|
|
|
<!-- inherit rules from: -->
|
|
<rule ref="PSR2"/>
|
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
|
|
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
|
|
<properties>
|
|
<property name="ignoreBlankLines" value="false"/>
|
|
</properties>
|
|
</rule>
|
|
|
|
<!-- Paths to check -->
|
|
<file>src</file>
|
|
<file>test</file>
|
|
<exclude-pattern>test/_files/*</exclude-pattern>
|
|
<exclude-pattern>test/TestAsset/*</exclude-pattern>
|
|
</ruleset>
|
|
|