mirror of
https://github.com/Universal-Omega/DynamicPageList3
synced 2024-11-30 19:04:32 +00:00
dccf02401e
* Update mediawiki/mediawiki-phan-config requirement from 0.12.1 to 0.14.0 Updates the requirements on [mediawiki/mediawiki-phan-config](https://github.com/wikimedia/mediawiki-tools-phan) to permit the latest version. - [Changelog](https://github.com/wikimedia/mediawiki-tools-phan/blob/master/HISTORY.md) - [Commits](https://github.com/wikimedia/mediawiki-tools-phan/compare/0.12.1...0.14.0) --- updated-dependencies: - dependency-name: mediawiki/mediawiki-phan-config dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Suppress MediaWikiNoEmptyIfDefined temporarily --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: CosmicAlpha <cosmic.alpha24@gmail.com>
25 lines
497 B
PHP
25 lines
497 B
PHP
<?php
|
|
|
|
$cfg = require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';
|
|
|
|
$cfg['directory_list'] = array_merge(
|
|
$cfg['directory_list'], [
|
|
'../../extensions/Variables',
|
|
]
|
|
);
|
|
|
|
$cfg['exclude_analysis_directory_list'] = array_merge(
|
|
$cfg['exclude_analysis_directory_list'], [
|
|
'../../extensions/Variables',
|
|
]
|
|
);
|
|
|
|
$cfg['suppress_issue_types'] = [
|
|
// Temporary
|
|
'MediaWikiNoEmptyIfDefined',
|
|
'SecurityCheck-LikelyFalsePositive',
|
|
'PhanAccessMethodInternal',
|
|
];
|
|
|
|
return $cfg;
|