-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
34 lines (27 loc) · 937 Bytes
/
phpcs.xml
File metadata and controls
34 lines (27 loc) · 937 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
<?xml version="1.0"?>
<ruleset name="SpamShield rules">
<file>src</file>
<file>tests</file>
<arg value="p"/>
<arg name="colors"/>
<rule ref="PSR12"/>
<rule ref="Generic.Files.LineLength">
<severity>0</severity>
</rule>
<rule ref="Generic.Formatting.MultipleStatementAlignment">
<severity>0</severity>
</rule>
<rule ref="Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace">
<severity>0</severity>
</rule>
<rule ref="Squiz.Functions.MultiLineFunctionDeclaration"/>
<rule ref="Squiz.WhiteSpace.FunctionSpacing">
<properties>
<property name="spacing" value="1"/>
<property name="spacingBeforeFirst" value="0"/>
<property name="spacingAfterLast" value="0"/>
</properties>
</rule>
<exclude-pattern>tests/_data/*</exclude-pattern>
<exclude-pattern>vendor/*</exclude-pattern>
</ruleset>