File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,10 @@ export class TSDocConfigFile {
179
179
return this . _reportUnsupportedHtmlElements ;
180
180
}
181
181
182
+ public set reportUnsupportedHtmlElements ( value : boolean | undefined ) {
183
+ this . _reportUnsupportedHtmlElements = value ;
184
+ }
185
+
182
186
/**
183
187
* Removes all items from the `tagDefinitions` array.
184
188
*/
@@ -246,10 +250,6 @@ export class TSDocConfigFile {
246
250
this . _supportedHtmlElements = undefined ;
247
251
}
248
252
249
- public setReportUnsupportedHtmlElements ( reportUnsupportedHtmlElements : boolean ) : void {
250
- this . _reportUnsupportedHtmlElements = reportUnsupportedHtmlElements ;
251
- }
252
-
253
253
/**
254
254
* Removes all entries from the "supportForTags" map.
255
255
*/
@@ -599,7 +599,7 @@ export class TSDocConfigFile {
599
599
configFile . addSupportedHtmlElement ( htmlElement ) ;
600
600
}
601
601
602
- configFile . setReportUnsupportedHtmlElements ( configuration . validation . reportUnsupportedHtmlElements ) ;
602
+ configFile . reportUnsupportedHtmlElements = configuration . validation . reportUnsupportedHtmlElements ;
603
603
604
604
return configFile ;
605
605
}
You can’t perform that action at this time.
0 commit comments