-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml.dist
27 lines (20 loc) · 850 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
<?xml version="1.0"?>
<ruleset name="Custom ruleset">
<description>RealtyBloc API</description>
<!-- What to scan -->
<file>.</file>
<!-- Show sniff and progress -->
<arg value="spn"/>
<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 Composer Vendor directory. -->
<exclude-pattern>/vendor/*</exclude-pattern>
<rule ref="NekofarCodingStandard">
<exclude name="SlevomatCodingStandard.TypeHints.DisallowMixedTypeHint.DisallowedMixedTypeHint" />
</rule>
</ruleset>