forked from alleyinteractive/laminas-validator-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
24 lines (19 loc) · 880 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
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="alleyinteractive/laminas-validator-extensions" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
<description>The coding standard for alleyinteractive/laminas-validator-extensions.</description>
<file>src/</file>
<file>tests/</file>
<exclude-pattern>vendor/</exclude-pattern>
<!--
Pass some flags to PHPCS:
p flag: Show progress of the run.
s flag: Show sniff codes in all reports.
-->
<arg value="ps"/>
<!-- Use PSR12 standard. -->
<rule ref="PSR12"/>
<!-- Check up to N files simultaneously. -->
<arg name="parallel" value="75"/>
<!-- Set severity to 1 to see everything that isn't effectively turned off. -->
<arg name="severity" value="1"/>
</ruleset>