-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
28 lines (23 loc) · 867 Bytes
/
phpcs.xml.dist
File metadata and controls
28 lines (23 loc) · 867 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
<?xml version="1.0" encoding="UTF-8"?>
<ruleset>
<arg name="colors" />
<arg value="sp" />
<arg name="warning-severity" value="0"/>
<file>./inc/</file>
<file>./src/</file>
<file>./tests/</file>
<config name="testVersion" value="8.4-"/>
<rule ref="Syde-Extra" />
<rule ref="Squiz.PHP.Eval.Discouraged">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="SlevomatCodingStandard.Files.TypeNameMatchesFileName">
<properties>
<property name="rootNamespaces" type="array">
<element key="src" value="Inpsyde\ObjectHooksRemover"/>
<element key="tests/src" value="Inpsyde\ObjectHooksRemover\Tests"/>
<element key="tests/cases" value="Inpsyde\ObjectHooksRemover\Tests"/>
</property>
</properties>
</rule>
</ruleset>