Translated using Weblate (Portuguese (Brazil))
[phpmyadmin.git] / phpcs.xml.dist
blob4aaac5dc6301cd03deceeefb45b5346122bdb880
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"/>
7 <arg name="colors"/>
8 <arg name="extensions" value="php"/>
10 <file>.</file>
12 <exclude-pattern>libraries/cache/routes.cache.php</exclude-pattern>
13 <exclude-pattern>test/sami-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">
20 <!-- Rules that should be followed, but are not required -->
21 <exclude name="PSR2.Classes.PropertyDeclaration.Underscore"/>
22 <exclude name="SlevomatCodingStandard.Operators.DisallowEqualOperators"/>
23 <exclude name="SlevomatCodingStandard.TypeHints.TypeHintDeclaration"/>
24 </rule>
25 </ruleset>