-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathphpcs.xml
More file actions
executable file
·22 lines (22 loc) · 898 Bytes
/
phpcs.xml
File metadata and controls
executable file
·22 lines (22 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<ruleset name="rules">
<description>rules</description>
<arg name="colors"/>
<file>code-snippets/</file>
<file>src/</file>
<file>tests/</file>
<file>migrations/</file>
<file>koko-analytics.php</file>
<file>uninstall.php</file>
<file>autoload.php</file>
<exclude-pattern>*\.(html|css|js)</exclude-pattern>
<exclude-pattern>tests/benchmarks/*</exclude-pattern>
<rule ref="Generic.Arrays.DisallowLongArraySyntax.Found"/>
<rule ref="PSR12">
<exclude name="Squiz.Classes.ValidClassName.NotCamelCaps" />
<exclude name="Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine"/>
<exclude name="Squiz.WhiteSpace.ScopeClosingBrace.ContentBefore" />
<exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps" />
<exclude name="Generic.Files.LineLength.TooLong"/>
</rule>
</ruleset>