forked from paratestphp/paratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
52 lines (43 loc) · 1.57 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0"?>
<ruleset
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"
name="laminas/automatic-releases CS rules"
>
<arg value="p"/>
<arg value="s"/>
<arg name="colors"/>
<file>src</file>
<file>test</file>
<exclude-pattern>*/test/fixtures/fatal_tests/*</exclude-pattern>
<exclude-pattern>*/test/tmp/*</exclude-pattern>
<config name="php_version" value="70300"/>
<rule ref="Doctrine"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="320"/>
<property name="absoluteLineLimit" value="0"/>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.ControlStructures.AssignmentInCondition.AssignmentInCondition">
<severity>0</severity>
</rule>
<rule ref="SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming.SuperfluousSuffix">
<severity>0</severity>
</rule>
<rule ref="SlevomatCodingStandard.Classes.SuperfluousExceptionNaming.SuperfluousSuffix">
<severity>0</severity>
</rule>
<rule ref="Squiz.Strings.DoubleQuoteUsage.ContainsVar">
<severity>0</severity>
</rule>
<rule ref="Squiz.NamingConventions.ValidVariableName.NotCamelCaps">
<severity>0</severity>
</rule>
<rule ref="Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps">
<severity>0</severity>
</rule>
<rule ref="Squiz.Functions.FunctionDeclaration.Found">
<severity>0</severity>
</rule>
</ruleset>