-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
36 lines (27 loc) · 1019 Bytes
/
phpcs.xml.dist
File metadata and controls
36 lines (27 loc) · 1019 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
31
32
33
34
35
36
<?xml version="1.0"?>
<ruleset name="PHP_CodeSniffer">
<description>The coding standard.</description>
<file>src/</file>
<config name="installed_paths" value="vendor/escapestudios/symfony2-coding-standard" />
<arg name="basepath" value="."/>
<arg name="cache" value=".phpcs-cache"/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<rule ref="PSR2"/>
<rule ref="Symfony"/>
<rule ref="Generic.Files.LineLength">
<exclude-pattern>*</exclude-pattern>
</rule>
<rule ref="Zend.NamingConventions.ValidVariableName.NotCamelCaps">
<exclude-pattern>*</exclude-pattern>
</rule>
<rule ref="Symfony.Commenting.License.Warning">
<exclude-pattern>*</exclude-pattern>
</rule>
<rule ref="Symfony.Commenting.FunctionComment.SpacingAfterParamType">
<exclude-pattern>*</exclude-pattern>
</rule>
<rule ref="Symfony.Errors.ExceptionMessage.Invalid">
<exclude-pattern>*</exclude-pattern>
</rule>
</ruleset>