From 7be64c3a4b489cc7a036a0a408647ebcdbdada7d Mon Sep 17 00:00:00 2001 From: David Anson Date: Fri, 14 Aug 2026 16:43:23 -0700 Subject: [PATCH] Address new lint errors from previous commit. --- eslint.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index a9f60cf..15ca414 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -52,7 +52,8 @@ export default defineConfig( "unicorn/no-array-callback-reference": "off", "unicorn/prefer-await": "off", "unicorn/prefer-module": "off", - "unicorn/prefer-top-level-await": "off" + "unicorn/prefer-top-level-await": "off", + "unicorn/single-line-block-comment-style": [ "error", "multiline", { "ignore": [ /^@type(?:def)? /u ] } ] } }, {