-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpcs.xml
More file actions
25 lines (22 loc) · 690 Bytes
/
phpcs.xml
File metadata and controls
25 lines (22 loc) · 690 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
<?xml version="1.0"?>
<ruleset name="coding standard">
<description>coding standard</description>
<!-- display progress -->
<arg value="psv"/>
<!-- use colors in output -->
<arg name="colors"/>
<!-- inherit rules from: -->
<rule ref="PSR12"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="140"/>
<property name="absoluteLineLimit" value="150"/>
</properties>
</rule>
<!-- Paths to check -->
<file>src</file>
<file>config.sample.php</file>
<file>cron.php</file>
<file>index.php</file>
</ruleset>