mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-08-04 03:34:09 +02:00
607d7cfdb3
Supports Fast C code, small C code, small stack and assembly for x86_64, Aarch64, Aarch32, Thumb2.
13 lines
692 B
Plaintext
13 lines
692 B
Plaintext
# codespell configuration (read automatically from the repository root).
|
|
#
|
|
# "SME" is the Arm Scalable Matrix Extension, referenced throughout the
|
|
# FrodoKEM Aarch64 code (comments, CPUID_..._SME macros, frodokem_..._sme
|
|
# identifiers, "sve2+sme" build strings). codespell's dictionary treats it as
|
|
# a misspelling of some/same/sms. The ignore-regex below drops the standalone
|
|
# SME token (any case, including "_sme" / "+sme") before spell-checking, while
|
|
# still flagging "sme" embedded in a larger alphabetic word - so genuine typos
|
|
# are unaffected. Kept out of ignore-words-list so "sme" is not globally
|
|
# whitelisted for every file.
|
|
[codespell]
|
|
ignore-regex = (?i)(?<![a-z])sme(?![a-z])
|