dependencies: Upgrade JavaScript dependencies.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-10-06 15:56:00 -07:00
committed by Tim Abbott
parent 1bc544bde4
commit 762a2d8da4
8 changed files with 748 additions and 677 deletions

View File

@@ -47,6 +47,8 @@ VNU_IGNORE = [
r"No “p” element in scope but a “p” end tag seen\.",
r"Element “div” not allowed as child of element “ul” in this context\. "
+ r"\(Suppressing further errors from this subtree\.\)",
# Opinionated informational messages.
r"Self-closing tag syntax in text/html documents is widely discouraged; its unnecessary and interacts badly with other HTML features \(e\.g\., unquoted attribute values\)\. If youre using a tool that injects self-closing tag syntax into all void elements, without any option to prevent it from doing so, then consider switching to a different tool\.",
]
VNU_IGNORE_REGEX = re.compile(r"|".join(VNU_IGNORE))