From: Timo Tijhof Date: Thu, 5 Sep 2019 14:30:03 +0000 (+0100) Subject: docs: Ignore .md from resources/lib in Doxyfile X-Git-Tag: 1.34.0-rc.0~374^2 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/%7B%24conf-%3EScriptPath%7D/index.php?a=commitdiff_plain;h=0b1d48db421ee73f9b27b3dbe1fc2dc0fb22ab8a;p=lhc%2Fweb%2Fwiklou.git docs: Ignore .md from resources/lib in Doxyfile Follows-up b7c5acd41954, which started indexing .md files anywhere in core. While these are harmless to analyse (they're not going to find any meaningful doc blocks), it just adds more noise to the file listing. Bug: T232104 Change-Id: Ibd2010010872d42dc3d52139305c87fcfc547477 --- diff --git a/maintenance/mwdocgen.php b/maintenance/mwdocgen.php index 791b360c0a..e2c262951c 100644 --- a/maintenance/mwdocgen.php +++ b/maintenance/mwdocgen.php @@ -99,6 +99,7 @@ class MWDocGen extends Maintenance { $this->excludes = [ 'vendor', 'node_modules', + 'resources/lib', 'images', 'static', ];