mirror of https://github.com/upx/upx.git
44 lines
889 B
TOML
44 lines
889 B
TOML
# see https://github.com/crate-ci/typos
|
|
|
|
# a generic spell-checker that works on source code is quite
|
|
# tricky, so some false positives are fine
|
|
|
|
[files]
|
|
extend-exclude = ["LICENSE", "misc/*podman*/*/packages.txt"]
|
|
|
|
# misc variable names & symbols
|
|
[default.extend-identifiers]
|
|
acc_spawnve = "acc_spawnve"
|
|
ba = "ba"
|
|
fo = "fo"
|
|
fof = "fof"
|
|
O_WRONLY = "O_WRONLY"
|
|
# optin: clang-analyzer-optin.cplusplus
|
|
optin = "optin"
|
|
sidelen = "sidelen"
|
|
# macOS 11 "Big Sur"
|
|
Sur = "Sur"
|
|
tpos = "tpos"
|
|
# assembly sources
|
|
hda = "hda"
|
|
Larg = "Larg"
|
|
pard = "pard"
|
|
suble = "suble"
|
|
|
|
# identifiers are intelligently split into words and then checked again
|
|
[default.extend-words]
|
|
delt = "delt"
|
|
FO = "FO"
|
|
fo = "fo"
|
|
# parm is used like param
|
|
PARM = "PARM"
|
|
parm = "parm"
|
|
# rela: ELF relocations
|
|
RELA = "RELA"
|
|
rela = "rela"
|
|
# siz is used for size
|
|
siz = "siz"
|
|
# SEH: Structured Exception Handling
|
|
SEH = "SEH"
|
|
seh = "seh"
|