Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.phpcs.xml - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad9c46af73bb13396b16adc462c1d499628fda32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<ruleset name="Slim coding standard">
    <description>Slim coding standard</description>
    <file>lib</file>

    <exclude-pattern>*/lib/_(boilerplate|bootstrap)\.php$</exclude-pattern>
    <!-- display progress -->
    <arg value="p"/>
    <!-- use colors in output -->
    <arg name="colors"/>

    <!-- inherit rules from: -->
    <rule ref="PSR2"/>
    <rule ref="Generic.Arrays.DisallowLongArraySyntax"/>

    <!-- Paths to check -->
    <file>Slim</file>
    <file>tests</file>
</ruleset>