From a1efbcf30a410cc9397aa993db93cf5fb2663a31 Mon Sep 17 00:00:00 2001 From: Shannon Anahata Date: Tue, 23 Jun 2026 13:13:40 -0700 Subject: [PATCH] fix(typos): add stem-level entries INSER and SELEC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit typos splits mixed-case plurals like INSERTs at the case boundary (INSER + Ts) and checks each subword independently. The full-word entries INSERTs/SELECTs alone are not enough — the stems INSER and SELEC must also be allowlisted. This follows the same pattern as STARTD (stem of MIGRATED_GETTING_STARTD_DOCS) and ERRO (stem of ERRORs). --- _typos.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_typos.toml b/_typos.toml index 2e33c61e2ad518..41e4e85954b944 100644 --- a/_typos.toml +++ b/_typos.toml @@ -69,7 +69,9 @@ APIs = "APIs" # Plural MCP = "MCP" # Model Context Protocol NPM = "NPM" # Node Package Manager INSERTs = "INSERTs" # Pluralized SQL keyword (e.g., "ClickHouse INSERTs") +INSER = "INSER" # Stem of INSERTs - needed because typos splits at case boundaries SELECTs = "SELECTs" # Pluralized SQL keyword (e.g., "ClickHouse SELECTs") +SELEC = "SELEC" # Stem of SELECTs - needed because typos splits at case boundaries # Code identifiers that are intentionally "misspelled" or match external systems # Note: These should ONLY include cases where the spelling is intentional