mirror of
https://github.com/rustfs/rustfs.git
synced 2026-03-17 14:24:08 +00:00
Co-authored-by: majinghe <42570491+majinghe@users.noreply.github.com> Co-authored-by: GatewayJ <835269233@qq.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: houseme <4829346+houseme@users.noreply.github.com> Co-authored-by: heihutu <30542132+heihutu@users.noreply.github.com>
48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
[default]
|
|
# # Ignore specific spell checking patterns
|
|
# extend-ignore-identifiers-re = [
|
|
# # Ignore common patterns in base64 encoding and hash values
|
|
# "[A-Za-z0-9+/]{8,}={0,2}", # base64 encoding
|
|
# "[A-Fa-f0-9]{8,}", # hexadecimal hash
|
|
# "[A-Za-z0-9_-]{20,}", # long random strings
|
|
# ]
|
|
|
|
# # Ignore specific regex patterns in content
|
|
# extend-ignore-re = [
|
|
# # Ignore hash values and encoded strings (base64 patterns)
|
|
# "(?i)[A-Za-z0-9+/]{8,}={0,2}",
|
|
# # Ignore long strings in quotes (usually hash or base64)
|
|
# '"[A-Za-z0-9+/=_-]{8,}"',
|
|
# # Ignore IV values and similar cryptographic strings
|
|
# '"[A-Za-z0-9+/=]{12,}"',
|
|
# # Ignore cryptographic signatures and keys (including partial strings)
|
|
# "[A-Za-z0-9+/]{6,}[A-Za-z0-9+/=]*",
|
|
# # Ignore base64-like strings in comments (common in examples)
|
|
# "//.*[A-Za-z0-9+/]{8,}[A-Za-z0-9+/=]*",
|
|
# ]
|
|
extend-ignore-re = [
|
|
# Ignore long strings in quotes (usually hash or base64)
|
|
'"[A-Za-z0-9+/=_-]{32,}"',
|
|
# Ignore IV values and similar cryptographic strings
|
|
'"[A-Za-z0-9+/=]{12,}"',
|
|
# Ignore cryptographic signatures and keys (including partial strings)
|
|
"[A-Za-z0-9+/]{16,}[A-Za-z0-9+/=]*",
|
|
]
|
|
|
|
[default.extend-words]
|
|
bui = "bui"
|
|
typ = "typ"
|
|
clen = "clen"
|
|
datas = "datas"
|
|
bre = "bre"
|
|
abd = "abd"
|
|
mak = "mak"
|
|
gae = "gae"
|
|
GAE = "GAE"
|
|
# s3-tests original test names (cannot be changed)
|
|
nonexisted = "nonexisted"
|
|
consts = "consts"
|
|
|
|
[files]
|
|
extend-exclude = []
|