forked from byrokrat/accounting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
30 lines (24 loc) · 913 Bytes
/
phpcs.xml
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>
<rule ref="PSR12"/>
<file>./check_sie4_file.php</file>
<file>./integrations</file>
<file>./src</file>
<file>./tests</file>
<exclude-pattern>./src/Sie4/Parser/Grammar.php</exclude-pattern>
<!--
TODO tmp exclude awaiting phpcs 3.6.0
see https://github.com/squizlabs/PHP_CodeSniffer/issues/3167
-->
<rule ref="Generic.WhiteSpace.ScopeIndent.IncorrectExact">
<exclude-pattern>./src</exclude-pattern>
</rule>
<!-- allow closing brace to be on same line togheter with constructur argument promotion -->
<rule ref="Squiz.WhiteSpace.ScopeClosingBrace.ContentBefore">
<exclude-pattern>./src</exclude-pattern>
</rule>
<rule ref="PSR2.Methods.FunctionCallSignature.Indent">
<exclude-pattern>./src/Template/TemplateRenderer.php</exclude-pattern>
</rule>
<arg name="colors"/>
</ruleset>