-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
37 lines (29 loc) · 864 Bytes
/
phpcs.xml.dist
File metadata and controls
37 lines (29 loc) · 864 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
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0"?>
<ruleset>
<file>./src</file>
<file>./tests</file>
<file>./hop.php</file>
<arg value="sp"/>
<rule ref="Inpsyde">
<exclude name="WordPress.PHP.NoSilencedErrors" />
</rule>
<rule ref="Inpsyde.CodeQuality.NestingLevel">
<properties>
<property name="warningLimit" value="4" />
</properties>
</rule>
<rule ref="Inpsyde.CodeQuality.Psr4">
<properties>
<property
name="psr4"
type="array"
value="Toobo\Hop\Tests=>tests/src"
/>
</properties>
</rule>
<rule ref="Inpsyde.CodeQuality.ElementNameMinimalLength">
<properties>
<property name="allowedShortNames" type="array" value="_,is,i,ok,no,cb,in" />
</properties>
</rule>
</ruleset>