mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-22 19:49:33 +00:00
23 lines
463 B
TOML
23 lines
463 B
TOML
[default]
|
|
# False positive patterns.
|
|
extend-ignore-identifiers-re = [
|
|
"ND",
|
|
"DNE",
|
|
# in file: `/cryptonight/c/oaes_lib.c:1213`
|
|
# not sure if false-positive or not.
|
|
"InvMixColums",
|
|
# cuprate_database's `TxRo` and `tx_ro`
|
|
"RO",
|
|
"Ro",
|
|
"ro",
|
|
]
|
|
|
|
[files]
|
|
# False positive files.
|
|
extend-exclude = [
|
|
"/misc/gpg_keys/",
|
|
"/cryptonight/",
|
|
"/test-utils/src/rpc/data/json.rs",
|
|
"/rpc/types/src/json.rs",
|
|
"/benches/criterion/cuprate-rpc-types/benches/serde.rs",
|
|
]
|