| 1 |
<?xml version="1.0"?> |
| 2 |
<ruleset name="Custom" namespace="Nette"> |
| 3 |
<rule ref="$presets/php72.xml"/> |
| 4 |
|
| 5 |
<!-- bug in SlevomatCodingStandard --> |
| 6 |
<rule ref="SlevomatCodingStandard.Operators.RequireCombinedAssignmentOperator"> |
| 7 |
<severity>0</severity> |
| 8 |
</rule> |
| 9 |
|
| 10 |
<!-- bug in FunctionSpacingSniff --> |
| 11 |
<exclude-pattern>./tests/Utils/Reflection.getDeclaringMethod.alias.phpt</exclude-pattern> |
| 12 |
<exclude-pattern>./tests/Utils/Reflection.getDeclaringMethod.insteadof.phpt</exclude-pattern> |
| 13 |
|
| 14 |
<!-- use function in Arrays.php, Callback.php, Html.php, Strings.php --> |
| 15 |
<rule ref="SlevomatCodingStandard.Namespaces.MultipleUsesPerLine.MultipleUsesPerLine"> |
| 16 |
<severity>0</severity> |
| 17 |
</rule> |
| 18 |
</ruleset> |
| 19 |
|