-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
30 lines (23 loc) · 839 Bytes
/
Copy pathphpcs.xml.dist
File metadata and controls
30 lines (23 loc) · 839 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
<?xml version="1.0"?>
<ruleset name="Fluid">
<description>PSR-12 formatting rules for the Fluid PHP codebase.</description>
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<file>.</file>
<exclude-pattern>config_private.php</exclude-pattern>
<exclude-pattern>dt/node_modules/*</exclude-pattern>
<exclude-pattern>media/*</exclude-pattern>
<exclude-pattern>node_modules/*</exclude-pattern>
<exclude-pattern>vendor/*</exclude-pattern>
<rule ref="PSR12">
<exclude name="Generic.WhiteSpace.ScopeIndent"/>
<exclude name="PSR1.Files.SideEffects"/>
</rule>
<rule ref="Internal.NoCodeFound">
<severity>0</severity>
</rule>
<rule ref="Generic.Files.LineLength">
<severity>0</severity>
</rule>
</ruleset>