mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-24 06:03:49 +00:00
c5d19577a4
The hook names contain a dash, which is mapped to an underscore by the hook runner (see Ie8c8fb603b33ff95c8f8d52f392227f147c528d8), and the previous method names weren't matching this. Follow-up: Ic5c82a367e34135bbc0f00ece5aeef4f2d92881b Change-Id: Ie80b62c49b2f4aaea49d5a1883f513348689d16a
17 lines
575 B
XML
17 lines
575 B
XML
<?xml version="1.0"?>
|
|
<ruleset>
|
|
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki">
|
|
<exclude name="MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals" />
|
|
</rule>
|
|
<rule ref="Generic.Files.LineLength">
|
|
<exclude-pattern>AbuseFilter\.alias\.php</exclude-pattern>
|
|
</rule>
|
|
<rule ref="MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName">
|
|
<!-- Many hooks have a dash in their name -->
|
|
<exclude-pattern>*includes/Hooks</exclude-pattern>
|
|
</rule>
|
|
<file>.</file>
|
|
<arg name="extensions" value="php"/>
|
|
<arg name="encoding" value="UTF-8"/>
|
|
</ruleset>
|