-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
28 lines (22 loc) · 770 Bytes
/
phpcs.xml
File metadata and controls
28 lines (22 loc) · 770 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
<?xml version="1.0"?>
<ruleset name="visol code style" namespace="Visol\CodeStyle\Standard">
<description>TYPO3 code style</description>
<!--<arg name="report" value="summary"/>-->
<arg name="colors"/>
<arg value="sp"/>
<arg name="extensions" value="php"/>
<file>Classes</file>
<!--<file>Configuration/TCA</file>-->
<!--<file>Tests</file>-->
<file>ext_emconf.php</file>
<file>ext_localconf.php</file>
<!--<file>ext_tables.php</file>-->
<ini name="memory_limit" value="512M"/>
<rule ref="PSR12"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="320"/>
<property name="absoluteLineLimit" value="400"/>
</properties>
</rule>
</ruleset>