forked from he4rt/he4rt-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
25 lines (21 loc) · 885 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer"
xsi:noNamespaceSchemaLocation="./vendor/squizlabs/php_codesniffer/phpcs.xsd">
<description>Configuracoes PHP_CodeSniffer TruckPag.</description>
<file>app/Actions</file>
<file>app/Http/Controllers</file>
<file>app/Repositories</file>
<file>app/Exceptions</file>
<file>tests</file>
<rule ref="PSR1"/>
<rule ref="PSR12">
<exclude name="PSR12.Namespaces.CompoundNamespaceDepth"/>
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.UnusedUses">
<properties>
<property name="searchAnnotations" value="false"/>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses"/>
<rule ref="SlevomatCodingStandard.Variables.UselessVariable"/>
</ruleset>