From 5cd3b5d94f4386172be96051cd89bc827e1adfe1 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Wed, 23 Oct 2024 00:43:46 +0900 Subject: [PATCH] ci: fix lint error on main (#6137) --- text/unstable_slugify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/unstable_slugify.ts b/text/unstable_slugify.ts index e93365808..e9e27c3b7 100644 --- a/text/unstable_slugify.ts +++ b/text/unstable_slugify.ts @@ -86,7 +86,7 @@ export const NON_ASCII = /[^0-9a-zA-Z\-]/g; * ``` * * @example With transliteration using a third-party library - * ```ts no-eval + * ```ts no-eval no-assert * import { NON_ASCII, slugify } from "@std/text/unstable-slugify"; * // example third-party transliteration library * import transliterate from "npm:any-ascii";