Skip to content

Commit 7de2b86

Browse files
committed
Update: void element list (fixes vuejs/eslint-plugin-vue#423)
1 parent 9ff5531 commit 7de2b86

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/html/util/tag-names.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ export const HTML_TAGS = new Set([
3232
* HTML tag names of void elements.
3333
*/
3434
export const HTML_VOID_ELEMENT_TAGS = new Set([
35-
"area", "base", "basefont", "bgsound", "br", "col", "command", "embed",
36-
"frame", "hr", "image", "img", "input", "isindex", "keygen", "link",
37-
"menuitem", "meta", "nextid", "param", "source", "track", "wbr",
35+
"area", "base", "br", "col", "embed", "hr", "img", "input", "link", "meta",
36+
"param", "source", "track", "wbr",
3837
])
3938

4039
/**

0 commit comments

Comments
 (0)