Translated using Weblate (Slovenian)
[phpmyadmin.git] / phpcs.xml.dist
blob55be8adef01e182d16c069d73caa5e2554c2619a
1 <?xml version="1.0"?>
2 <ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
3 <!-- Show progress and sniff codes -->
4 <arg value="ps"/>
6 <arg name="cache" value=".phpcs-cache"/>
7 <arg name="colors"/>
8 <arg name="extensions" value="php"/>
10 <file>.</file>
12 <exclude-pattern>libraries/cache/*</exclude-pattern>
13 <exclude-pattern>test/doctum-config.php</exclude-pattern>
14 <exclude-pattern>*/node_modules/*</exclude-pattern>
15 <exclude-pattern>*/tmp/*</exclude-pattern>
16 <exclude-pattern>*/twig-templates/*</exclude-pattern>
17 <exclude-pattern>*/vendor/*</exclude-pattern>
19 <rule ref="PhpMyAdmin"/>
21 <!-- Rules that should be followed, but are not required -->
22 <rule ref="SlevomatCodingStandard.Operators.DisallowEqualOperators">
23 <severity>4</severity>
24 </rule>
25 </ruleset>