1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 21:28:30 +01:00
LinkAce/phpcs.xml

22 lines
631 B
XML

<?xml version="1.0"?>
<ruleset name="KVH PHPCS Rules" namespace="Kovah\CS\Standard">
<description>KVH Code Standard ruleset</description>
<!-- Check the theme folder -->
<file>./app</file>
<file>./database/factories</file>
<file>./database/seeders</file>
<file>./tests</file>
<!-- Enable the PSR-2 Code Standard rules -->
<rule ref="PSR2"/>
<!-- Prevent warnings for lines that contain more than 80 characters -->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="120"/>
<property name="absoluteLineLimit" value="0"/>
</properties>
</rule>
</ruleset>