From 27562274d978d116ee16822a7fad4b019778d9f4 Mon Sep 17 00:00:00 2001 From: Shannon Anahata Date: Tue, 23 Jun 2026 11:38:46 -0700 Subject: [PATCH] fix(typos): allow pluralized SQL keywords INSERTs and SELECTs The typos checker splits 'INSERTs' and 'SELECTs' into stems 'INSER' and 'SELEC', then flags them as misspellings. These are valid pluralized SQL keywords used in technical documentation (e.g., 'ClickHouse INSERTs'). This unblocks #17782. --- _typos.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_typos.toml b/_typos.toml index 7fc8c07de024a..2e33c61e2ad51 100644 --- a/_typos.toml +++ b/_typos.toml @@ -68,6 +68,8 @@ API = "API" # Application Programming Interface APIs = "APIs" # Plural MCP = "MCP" # Model Context Protocol NPM = "NPM" # Node Package Manager +INSERTs = "INSERTs" # Pluralized SQL keyword (e.g., "ClickHouse INSERTs") +SELECTs = "SELECTs" # Pluralized SQL keyword (e.g., "ClickHouse SELECTs") # Code identifiers that are intentionally "misspelled" or match external systems # Note: These should ONLY include cases where the spelling is intentional