From c52e2e32d06b4e3453bc72056d12c274bd66e1b1 Mon Sep 17 00:00:00 2001 From: Nicolas Sarlin Date: Wed, 27 Aug 2025 11:30:13 +0200 Subject: [PATCH] chore(ci): ignore cbor and bcode files in typo checker --- _typos.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_typos.toml b/_typos.toml index 4946598a7..d447ea570 100644 --- a/_typos.toml +++ b/_typos.toml @@ -12,7 +12,7 @@ extend-ignore-identifiers-re = [ "herlo", # Example in trivium "C9217BA0D762ACA1", - "0x[0-9a-fA-F]+" + "0x[0-9a-fA-F]+", ] [files] @@ -20,4 +20,6 @@ extend-exclude = [ "backends/tfhe-cuda-backend/cuda/src/fft128/twiddles.cu", "backends/tfhe-cuda-backend/cuda/src/fft/twiddles.cu", "backends/tfhe-hpu-backend/config_store/**/*.link_summary", + "*.cbor", + "*.bcode", ]