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
You can disable HTML syntax errors by options. Please see [WHATWG HTML spec](https://html.spec.whatwg.org/multipage/parsing.html#parse-errors) to know the details of HTML syntax errors.
78
+
Only `non-void-html-element-start-tag-with-trailing-solidus` is disabled by default because Vue.js supports self-closing tags.
78
79
79
-
For example, if `"x-invalid-end-tag": true` is given then this rule will catch the end tags of elements which have not opened.
80
-
The error codes are defined in [WHATWG spec](https://html.spec.whatwg.org/multipage/parsing.html#parse-errors), but this rule does not support all of those (E.g., it does not catch errors about DOCTYPE).
81
-
Also, The codes which have `x-` prefix are original in this rule because errors in tree construction phase have not codified yet.
80
+
> Note this rule does not support all of those (E.g., it does not catch errors about DOCTYPE).
81
+
82
+
The error codes which have `x-` prefix are original of this rule because errors in tree construction phase have not codified yet.
82
83
83
84
-`x-invalid-end-tag` enables the errors about the end tags of elements which have not opened.
84
85
-`x-invalid-namespace` enables the errors about invalid `xmlns` attributes. See also [step 10. of "create an element for a token"](https://html.spec.whatwg.org/multipage/parsing.html#create-an-element-for-the-token).
85
-
86
-
> TODO(mysticatea): I will revisit errors in tree construction phase after those are codified.
0 commit comments