From 9edf3abb1f3e21e9fa182e915501d6a53ea940e1 Mon Sep 17 00:00:00 2001 From: alandefreitas Date: Wed, 18 Dec 2024 12:20:08 -0300 Subject: [PATCH] referenced-declarations default is `never` #refactor --- docs/mrdocs.schema.json | 2 +- src/lib/Lib/ConfigOptions.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/mrdocs.schema.json b/docs/mrdocs.schema.json index 8c1529a9d..703746066 100644 --- a/docs/mrdocs.schema.json +++ b/docs/mrdocs.schema.json @@ -203,7 +203,7 @@ "type": "string" }, "referenced-declarations": { - "default": "dependency", + "default": "never", "description": "Determine whether external declarations should be extracted when they are referenced in the source code. If this option is not `never`, a second pass happens in the extraction process to extract dependencies in the Corpus. When set to `always`, external declarations are always extracted. When set to `dependency`, external declarations are extracted only if they are referenced by the source code. When set to `never`, external declarations are never extracted.", "enum": [ "always", diff --git a/src/lib/Lib/ConfigOptions.json b/src/lib/Lib/ConfigOptions.json index 202c8a340..5c7ab1547 100644 --- a/src/lib/Lib/ConfigOptions.json +++ b/src/lib/Lib/ConfigOptions.json @@ -201,7 +201,7 @@ "dependency", "never" ], - "default": "dependency" + "default": "never" }, { "name": "anonymous-namespaces",