From cca40c6e58e6d6a342db9663bac3b4edd9ed3808 Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Tue, 18 Feb 2025 13:48:08 +0000 Subject: [PATCH] Doc: Ignore 'Unknown base for QML type' warnings for now These warnings are false positives when testing in the CI when a documentation module containing the base type is meant to be loaded as a dependency; In the CI, the .index files for doc dependencies are not available so we see this warning. Ignore these warnings for now in the global documentation config. Change-Id: Ic1711bf7389e9f9d4a04e3b72b2c9f8b25539357 Reviewed-by: Paul Wicking (cherry picked from commit 3336422289079b421797ac2d194241976929c7d8) Reviewed-by: Qt Cherry-pick Bot (cherry picked from commit d83f820ab499326e579f9f7827070d5ca0c306b6) --- doc/global/compat.qdocconf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/global/compat.qdocconf b/doc/global/compat.qdocconf index df3f49c653e..42d65fca367 100644 --- a/doc/global/compat.qdocconf +++ b/doc/global/compat.qdocconf @@ -7,4 +7,5 @@ macro.relatesto = "\\relates" spurious = "Missing comma in .*" \ "Missing pattern .*" \ - "Unable to parse (QML|JavaScript).*" + "Unable to parse (QML|JavaScript).*" \ + "Unknown base .*"