Skip to content

Commit 37786fd

Browse files
committedFeb 13, 2025
warn-unnamed-param option
#feat
1 parent 541d80c commit 37786fd

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed
 

‎docs/mrdocs.schema.json

+10
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,16 @@
540540
"title": "Warn if parameters are not documented",
541541
"type": "boolean"
542542
},
543+
"warn-unnamed-param": {
544+
"default": false,
545+
"description": "When set to `true`, MrDocs outputs a warning message if a documented function has a parameter that is not named.",
546+
"enum": [
547+
true,
548+
false
549+
],
550+
"title": "Warn if documented functions have unnamed parameters",
551+
"type": "boolean"
552+
},
543553
"warnings": {
544554
"default": true,
545555
"description": "When set to `true`, MrDocs outputs warning messages during the generation of the documentation. It is usually recommended to enable warnings while writing the documentation.",

‎src/lib/Lib/ConfigOptions.json

+7
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,13 @@
521521
"type": "bool",
522522
"default": true
523523
},
524+
{
525+
"name": "warn-unnamed-param",
526+
"brief": "Warn if documented functions have unnamed parameters",
527+
"details": "When set to `true`, MrDocs outputs a warning message if a documented function has a parameter that is not named.",
528+
"type": "bool",
529+
"default": false
530+
},
524531
{
525532
"name": "warn-if-undoc-enum-val",
526533
"brief": "Warn if enum values are not documented",

‎src/lib/Metadata/Finalizers/JavadocFinalizer.cpp

+50
Original file line numberDiff line numberDiff line change
@@ -648,6 +648,7 @@ emitWarnings()
648648
warnDocErrors();
649649
warnNoParamDocs();
650650
warnUndocEnumValues();
651+
warnUnnamedParams();
651652

652653
// Print to the console
653654
auto const level = !corpus_.config->warnAsError ? report::Level::warn : report::Level::error;
@@ -840,4 +841,53 @@ warnUndocEnumValues()
840841
}
841842
}
842843

844+
void
845+
JavadocFinalizer::
846+
warnUnnamedParams()
847+
{
848+
MRDOCS_CHECK_OR(corpus_.config->warnUnnamedParam);
849+
for (auto const& I : corpus_.info_)
850+
{
851+
MRDOCS_CHECK_OR_CONTINUE(I->isFunction());
852+
MRDOCS_CHECK_OR_CONTINUE(I->Extraction == ExtractionMode::Regular);
853+
MRDOCS_CHECK_OR_CONTINUE(I->javadoc);
854+
warnUnnamedParams(dynamic_cast<FunctionInfo const&>(*I));
855+
}
856+
}
857+
858+
void
859+
JavadocFinalizer::
860+
warnUnnamedParams(FunctionInfo const& I)
861+
{
862+
auto orderSuffix = [](std::size_t const i) -> std::string
863+
{
864+
if (i == 0)
865+
{
866+
return "st";
867+
}
868+
if (i == 1)
869+
{
870+
return "nd";
871+
}
872+
if (i == 2)
873+
{
874+
return "rd";
875+
}
876+
return "th";
877+
};
878+
879+
for (std::size_t i = 0; i < I.Params.size(); ++i)
880+
{
881+
if (I.Params[i].Name.empty())
882+
{
883+
this->warn(
884+
*getPrimaryLocation(I),
885+
"{}: {}{} parameter is unnamed",
886+
corpus_.Corpus::qualifiedName(I),
887+
i + 1,
888+
orderSuffix(i));
889+
}
890+
}
891+
}
892+
843893
} // clang::mrdocs

‎src/lib/Metadata/Finalizers/JavadocFinalizer.hpp

+6
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,12 @@ class JavadocFinalizer
246246

247247
void
248248
warnUndocEnumValues();
249+
250+
void
251+
warnUnnamedParams();
252+
253+
void
254+
warnUnnamedParams(FunctionInfo const& I);
249255
};
250256

251257
} // clang::mrdocs

0 commit comments

Comments
 (0)