phpcs.xml.dist 585 Bytes
Newer Older
<?xml version="1.0"?>
<ruleset name="Irstea" namespace="Irstea\Standard">

    <description>Coding standard of Irstea, pôle informatique scientifique</description>

    <file>src</file>

    <arg name="encoding" value="utf-8"/>
    <arg value="sp"/>

    <rule ref="PSR2"/>

    <rule ref="Generic.Files.LineLength">
        <properties>
            <property name="lineLimit" value="140"/>
        </properties>
    </rule>

    <exclude-pattern>vendor/</exclude-pattern>
    <exclude-pattern>node_modules/</exclude-pattern>
    <exclude-pattern>cache/</exclude-pattern>

</ruleset>