RSA icon indicating copy to clipboard operation
RSA copied to clipboard

ci: Typos check does not understand `concat!("hex-string")`

Open pinkforest opened this issue 4 months ago • 1 comments

typos-check here: https://github.com/RustCrypto/RSA/commit/1e21564801803af8f8944f1e40a89178bb08a4fc

Warning: "ba" should be "by" or "be".

error: ba should be by, be
--> ./src/pkcs1v15/encrypting_key.rs:54:20

|

54 | "92ba5fe2430203010001",

I've had to disable it in #562 as it doesn't seem to understand macros.

pinkforest avatar Aug 22 '25 08:08 pinkforest

You can configure typos with various regexes for things to ignore: https://github.com/RustCrypto/traits/blob/0596378/.typos.toml#L8-L12

tarcieri avatar Aug 26 '25 00:08 tarcieri