From 0b1d48db421ee73f9b27b3dbe1fc2dc0fb22ab8a Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Thu, 5 Sep 2019 15:30:03 +0100 Subject: [PATCH] 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 --- maintenance/mwdocgen.php | 1 + 1 file changed, 1 insertion(+) 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', ]; -- 2.20.1