mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 04:27:02 +01:00
* Ensure we dont use std hashmaps * coalescing the clippy config files --------- Co-authored-by: James Hodgkinson <james@terminaloutcomes.com>
16 lines
597 B
TOML
16 lines
597 B
TOML
########################################################################
|
|
# complexity clippy settings
|
|
#
|
|
# because the clippy devs also acknowledge that complexity is hard to define
|
|
# https://github.com/rust-lang/rust-clippy/issues/5418#issuecomment-610054361
|
|
#
|
|
########################################################################
|
|
|
|
# default is 7, 8's ok. https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
|
|
too-many-arguments-threshold = 8
|
|
|
|
# default's 250
|
|
type-complexity-threshold = 300
|
|
|
|
disallowed-types = ["std::collections::HashMap", "std::collections::HashSet"]
|