mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 01:10:07 +00:00
9de512d59c
PHPUnit wants the filenames of the tests to match the class name being tested. Bug: T337333 Change-Id: I44f626d1bfdf151fecafc29c51b2cf2bb90481b0
19 lines
808 B
XML
19 lines
808 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" />
|
|
<exclude name="MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName" />
|
|
</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>
|