mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 11:14:38 +01:00
73aa7e3d68
[CodingStyle] Skip has non-printable chars on SymplifyQuoteEscapeRector (#2926)
19 lines
687 B
XML
19 lines
687 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Custom" namespace="Nette">
|
|
<rule ref="$presets/php72.xml"/>
|
|
|
|
<!-- bug in SlevomatCodingStandard -->
|
|
<rule ref="SlevomatCodingStandard.Operators.RequireCombinedAssignmentOperator">
|
|
<severity>0</severity>
|
|
</rule>
|
|
|
|
<!-- bug in FunctionSpacingSniff -->
|
|
<exclude-pattern>./tests/Utils/Reflection.getDeclaringMethod.alias.phpt</exclude-pattern>
|
|
<exclude-pattern>./tests/Utils/Reflection.getDeclaringMethod.insteadof.phpt</exclude-pattern>
|
|
|
|
<!-- use function in Arrays.php, Callback.php, Html.php, Strings.php -->
|
|
<rule ref="SlevomatCodingStandard.Namespaces.MultipleUsesPerLine.MultipleUsesPerLine">
|
|
<severity>0</severity>
|
|
</rule>
|
|
</ruleset>
|