From 9170955602b5469068594f90b74cb15a4cdf30d6 Mon Sep 17 00:00:00 2001 From: mattsu Date: Mon, 10 Nov 2025 22:05:52 +0900 Subject: [PATCH] chore(base32): extend spell-checker ignore list with test token - Add "hellohello" to ignored words to prevent false positives - Keeps spell-checker from flagging known test data in base_common.rs --- src/uu/base32/src/base_common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/base32/src/base_common.rs b/src/uu/base32/src/base_common.rs index d7f7a9ce9f4..4aac3023dce 100644 --- a/src/uu/base32/src/base_common.rs +++ b/src/uu/base32/src/base_common.rs @@ -3,7 +3,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -// spell-checker:ignore hexupper lsbf msbf unpadded nopad aGVsbG8sIHdvcmxkIQ +// spell-checker:ignore hexupper lsbf msbf unpadded nopad aGVsbG8sIHdvcmxkIQ hellohello use clap::{Arg, ArgAction, Command}; use std::ffi::OsString;