<?xml version="1.0"?>
<ruleset name="GiantPeach">
    <description>Giant Peach coding standard</description>

    <rule ref="PSR2"/>

	<!-- Exclude 3rd party libraries -->
	<exclude-pattern>*/node_modules/*</exclude-pattern>
	<exclude-pattern>*/vendor/*</exclude-pattern>
    <exclude-pattern>*/web/app/languages/*</exclude-pattern>
    <exclude-pattern>*/web/app/mu-plugins/*</exclude-pattern>
    <exclude-pattern>*/web/app/plugins/*</exclude-pattern>
    <exclude-pattern>*/web/app/upgrade/*</exclude-pattern>

    <!-- Exclude WordPress core -->
    <exclude-pattern>*/web/wp/*</exclude-pattern>

    <rule ref="Generic.Files.LineLength.TooLong">
        <severity>0</severity>
    </rule>
</ruleset>