-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
25 lines (20 loc) · 879 Bytes
/
Copy pathphpcs.xml.dist
File metadata and controls
25 lines (20 loc) · 879 Bytes
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="code-tools"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
<config name="installed_paths" value="../../../src/PHPCodeSniffer"/>
<arg name="colors"/>
<arg name="parallel" value="75"/>
<arg value="p"/>
<arg value="n"/>
<exclude-pattern>tests/resources/PHPCodeSniffer/*</exclude-pattern>
<!-- Include custom sniffs located in Kununu\Sniffs folder -->
<rule ref="Kununu"/>
<!-- Customize Rules according to project needs -->
<rule ref="Kununu.Files.LineLength">
<exclude-pattern>*/Migrations/*</exclude-pattern>
<properties>
<property name="ignoreComments" value="true"/>
<property name="ignoreUseStatements" value="true"/>
</properties>
</rule>
</ruleset>