You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mrdocs.schema.json
+10
Original file line number
Diff line number
Diff line change
@@ -450,6 +450,16 @@
450
450
"title": "Verbose output",
451
451
"type": "boolean"
452
452
},
453
+
"warn-if-doc-error": {
454
+
"default": true,
455
+
"description": "When set to `true`, MrDocs outputs a warning message if the documentation of a symbol has errors such as duplicate parameters and parameters that don't exist.",
456
+
"enum": [
457
+
true,
458
+
false
459
+
],
460
+
"title": "Warn if documentation has errors",
461
+
"type": "boolean"
462
+
},
453
463
"warn-if-undocumented": {
454
464
"default": true,
455
465
"description": "When set to `true`, MrDocs outputs a warning message if a symbol that passes all filters is not documented. This option is only effective when `extract-all` is set to `false`.",
Copy file name to clipboardExpand all lines: src/lib/Lib/ConfigOptions.json
+7
Original file line number
Diff line number
Diff line change
@@ -485,6 +485,13 @@
485
485
"details": "When set to `true`, MrDocs outputs a warning message if a symbol that passes all filters is not documented. This option is only effective when `extract-all` is set to `false`.",
486
486
"type": "bool",
487
487
"default": true
488
+
},
489
+
{
490
+
"name": "warn-if-doc-error",
491
+
"brief": "Warn if documentation has errors",
492
+
"details": "When set to `true`, MrDocs outputs a warning message if the documentation of a symbol has errors such as duplicate parameters and parameters that don't exist.",
Copy file name to clipboardExpand all lines: test-files/golden-tests/javadoc/inline/styled.html
+18
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,24 @@ <h3>Synopsis</h3>
91
91
<h3>Return Value</h3>
92
92
<p><code>-1</code><span> if </span><code>*this < other</code><span>, </span><code>0</code><span> if </span><code>this == other</code><span>, and 1 if </span><code>this > other</code><span>.</span></p>
93
93
94
+
</div>
95
+
<div>
96
+
<h3>Parameters</h3>
97
+
<table>
98
+
<thead>
99
+
<tr>
100
+
<th>Name</th>
101
+
<th>Description</th>
102
+
</tr>
103
+
</thead>
104
+
<tbody>
105
+
<tr>
106
+
<td><strong>other</strong></td>
107
+
<td><p><span>The other object to compare against.</span></p>
0 commit comments