-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
21 lines (17 loc) · 679 Bytes
/
phpcs.xml.dist
File metadata and controls
21 lines (17 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/3.5.0/phpcs.xsd"
name="Vendor">
<description>Project coding standards</description>
<arg name="extensions" value="php"/>
<arg name="colors"/>
<arg value="sp"/>
<!-- Source and tests must follow the coding standard. -->
<file>./src</file>
<rule ref="LaminasCodingStandard">
<properties>
<property name="lineLimit" value="160"/>
<property name="absoluteLineLimit" value="180"/>
</properties>
</rule>
</ruleset>