mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
2bbce8ebef
* refactor * fix: bug in previous refactor * chore: exclude phpcompat sniff due to bug in phpcompat * fix: do not leak absolute paths * refactor/fix: batch extensions checking, fix DOS issue
17 lines
553 B
XML
17 lines
553 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ruleset name="RSS-Bridge PHPCompatibility">
|
|
<description>Defines rules for PHPCompatibility</description>
|
|
<exclude-pattern>./static</exclude-pattern>
|
|
<exclude-pattern>./vendor</exclude-pattern>
|
|
|
|
<!-- Run against the PHPCompatibility ruleset -->
|
|
<!--
|
|
|
|
-->
|
|
<config name="testVersion" value="7.4-"/>
|
|
<rule ref="PHPCompatibility">
|
|
<!-- This sniff is very overzealous and inaccurate, so we'll disable it -->
|
|
<exclude name="PHPCompatibility.Extensions.RemovedExtensions"/>
|
|
</rule>
|
|
|
|
</ruleset>
|