-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
39 lines (35 loc) · 1.49 KB
/
phpcs.xml.dist
File metadata and controls
39 lines (35 loc) · 1.49 KB
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
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd" >
<arg name="basepath" value="." />
<arg name="cache" value=".phpcs.cache" />
<arg name="colors" />
<arg name="extensions" value="php,phpt" />
<arg value="p" />
<arg value="s" />
<file>src/</file>
<file>tests/</file>
<rule ref="Respect" />
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>tests/fixtures/</exclude-pattern>
</rule>
<rule ref="Squiz.Arrays.ArrayDeclaration.ValueNoNewline">
<exclude-pattern>tests/unit/Handlers/CallableHandlerTest.php</exclude-pattern>
</rule>
<rule ref="Squiz.Functions.GlobalFunction">
<exclude-pattern>tests/integration/lib/helpers.php</exclude-pattern>
</rule>
<rule ref="Generic.Files.InlineHTML.Found">
<exclude-pattern>tests/integration/</exclude-pattern>
</rule>
<rule ref="PSR12.Files.FileHeader.HeaderPosition">
<exclude-pattern>tests/integration/</exclude-pattern>
</rule>
<rule ref="Generic.PHP.CharacterBeforePHPOpeningTag.Found">
<exclude-pattern>tests/integration/</exclude-pattern>
</rule>
<rule ref="SlevomatCodingStandard.Functions.StaticClosure.ClosureNotStatic">
<exclude-pattern>tests/integration</exclude-pattern>
<exclude-pattern>tests/unit/Handlers/CallableHandlerTest.php</exclude-pattern>
</rule>
</ruleset>