-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathruleset.xml
28 lines (21 loc) · 898 Bytes
/
ruleset.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
25
26
27
28
<?xml version="1.0"?>
<ruleset name="SprykerСore">
<description>
Spryker Coding Standard for Spryker Core.
Extends main Spryker Coding Standard.
All sniffs in ./Sniffs will be auto loaded
</description>
<config name="php_version" value="80000"/>
<exclude-pattern>*/tests/_support/_generated/*</exclude-pattern>
<exclude-pattern>*/tests/_helpers/*</exclude-pattern>
<exclude-pattern>*/tests/_output/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<rule ref="vendor/spryker/code-sniffer/Spryker/ruleset.xml"/>
<!-- Define your own sniffs here -->
<rule ref="Spryker.Internal.SprykerDisallowFunctions">
<properties>
<!-- We want to prevent 8.3+ functions to break 8.2 compatibility -->
<property name="phpVersion" value="8.2"/>
</properties>
</rule>
</ruleset>