-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.phpcs.xml
More file actions
34 lines (28 loc) · 988 Bytes
/
.phpcs.xml
File metadata and controls
34 lines (28 loc) · 988 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="reinorange" namespace="Thathoff\KirbyMigrations">
<arg name="colors"/>
<arg value="sp"/>
<arg name="extensions" value="php" />
<arg name="basepath" value="."/>
<file>./</file>
<exclude-pattern type="relative">^(vendor)/*</exclude-pattern>
<rule ref="Squiz.Strings.DoubleQuoteUsage.NotRequired" />
<rule ref="Generic.PHP.ForbiddenFunctions">
<properties>
<property name="forbiddenFunctions" type="array">
<element key="is_null" value="null"/>
</property>
</properties>
</rule>
<rule ref="Generic.Formatting.SpaceAfterNot">
<properties>
<property name="spacing" value="0" />
</properties>
</rule>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="200"/>
<property name="absoluteLineLimit" value="500"/>
</properties>
</rule>
</ruleset>