forked from llaville/monolog-callbackfilterhandler
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
24 lines (20 loc) · 908 Bytes
/
phpcs.xml
File metadata and controls
24 lines (20 loc) · 908 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
<?xml version="1.0"?>
<ruleset name="monolog-callbackfilterhandler" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
<description>monolog-callbackfilterhandler</description>
<arg name="report" value="full"/>
<arg value="wps"/>
<arg name="encoding" value="utf-8"/>
<!-- Check up to 8 files simultaneously. -->
<arg name="parallel" value="8"/>
<!-- inherit rules from: -->
<rule ref="Mimmi20CodingStandard">
<exclude name="SlevomatCodingStandard.Functions.FunctionLength.FunctionLength"/>
<exclude name="SlevomatCodingStandard.Complexity.Cognitive.ComplexityTooHigh"/>
</rule>
<!-- Paths to check -->
<file>src</file>
<file>tests</file>
<file>.php-cs-fixer.php</file>
<file>composer-dependency-analyser.php</file>
<file>rector.php</file>
</ruleset>