mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-12 07:55:53 +00:00
834ce601e5
Add ignore for the remaining phpcs issue Enable the excluded sniff and suppress the issue inline Avoid that new code gets added with this issue. Change-Id: Ifae1c0979e224c33d1c59ebf2330bb27da0da2e5
18 lines
722 B
XML
18 lines
722 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="MediaWiki">
|
|
<file>.</file>
|
|
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki">
|
|
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationPrivate" />
|
|
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationProtected" />
|
|
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationPublic" />
|
|
</rule>
|
|
<rule ref="MediaWiki.Files.ClassMatchesFilename.NotMatch">
|
|
<exclude-pattern>includes/</exclude-pattern>
|
|
<exclude-pattern>maintenance/</exclude-pattern>
|
|
<exclude-pattern>scripts/</exclude-pattern>
|
|
</rule>
|
|
<arg name="encoding" value="UTF-8" />
|
|
<arg name="extensions" value="php" />
|
|
<arg name="colors" />
|
|
</ruleset>
|