forked from ackinacki/ackinacki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clippy.toml
41 lines (34 loc) · 1.79 KB
/
clippy.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# :schema
# There is also a scripts/clippy_wasm/clippy.toml which forbids some methods that are not available in wasm.
msrv = "1.80"
allow-unwrap-in-tests = true
type-complexity-threshold = 2000 # for our needs long types are fine
# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_macros
disallowed-macros = [
"dbg", # TODO(emilk): consider forbidding these to encourage the use of proper log # "std::eprint",
# "std::eprintln",
# "std::print",
# "std::println",
# "std::unimplemented", # generated by ArrowDeserialize derive-macro :(
]
# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_methods
disallowed-methods = [
"std::env::temp_dir", # Use the tempdir crate instead # There are many things that aren't allowed on wasm,
# but we cannot disable them all here (because of e.g. https://github.com/rust-lang/rust-clippy/issues/10406)
# so we do that in `clipppy_wasm.toml` instead.
"std::thread::spawn", # Use `std::thread::Builder` and name the thread
## INFO: in acki-nacli project we have to use this algo anyway
# "sha1::Digest::new", # SHA1 is cryptographically broken
"std::panic::catch_unwind", # We compile with `panic = "abort"`
]
# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names
disallowed-names = []
# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types
disallowed-types = [
# Use the faster & simpler non-poisonable primitives in `parking_lot` instead
# "std::sync::Mutex",
"std::sync::RwLock",
"std::sync::Condvar", # "std::sync::Once", # enabled for now as the `log_once` macro uses it internally
]
# Allow-list of words for markdown in dosctrings https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
doc-valid-idents = []