-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml.dist
32 lines (23 loc) · 948 Bytes
/
phpcs.xml.dist
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
26
27
28
29
30
31
32
<?xml version="1.0"?>
<ruleset name="Custom ruleset">
<description>Omnipay ZarinPal</description>
<!-- What to scan -->
<file>.</file>
<!-- Show sniff and progress -->
<arg value="sp"/>
<arg name="colors"/>
<!-- Strip the filepaths down to the relevant bit. -->
<arg name="basepath" value="./"/>
<!-- Enables parallel processing when available for faster results. -->
<arg name="parallel" value="8"/>
<!-- Only check the PHP files. JS files are checked separately with JSCS and JSHint. -->
<arg name="extensions" value="php"/>
<!-- Exclude the test data and fixtures. -->
<exclude-pattern>/tests/*</exclude-pattern>
<!-- Exclude the Composer Vendor directory. -->
<exclude-pattern>/vendor/*</exclude-pattern>
<!-- Exclude the Node Modules directory. -->
<exclude-pattern>/node_modules/*</exclude-pattern>
<rule ref="NekofarCodingStandard">
</rule>
</ruleset>