The current implementation of require-closing-tags includes the option allowSelfClosingCustom. When set to false, self-closing tags for custom elements are not permitted. However, when set to true, it only ignores custom tags, regardless of whether they are self-closed or not. This behavior differs from selfClosing, which enforces the use of self-closing tags of Void Elements when is set to true.
Would it be possible to include an option (or modify the existing one) that would enforce the use of self-closing tags for void custom tags?
The current implementation of
require-closing-tags
includes the optionallowSelfClosingCustom
. When set tofalse
, self-closing tags for custom elements are not permitted. However, when set totrue
, it only ignores custom tags, regardless of whether they are self-closed or not. This behavior differs fromselfClosing
, which enforces the use of self-closing tags of Void Elements when is set totrue
.Would it be possible to include an option (or modify the existing one) that would enforce the use of self-closing tags for void custom tags?