-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clippy.toml
16 lines (15 loc) · 927 Bytes
/
.clippy.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Clippy configuration
# https://doc.rust-lang.org/nightly/clippy/lint_configuration.html
allow-expect-in-tests = true
allow-private-module-inception = true
allow-unwrap-in-tests = true
avoid-breaking-exported-api = false
disallowed-names = []
disallowed-macros = [
{ path = "std::dbg", reason = "it is okay to use during development, but please do not include it in main branch" },
{ path = "std::print", reason = "it is okay to use during development, but please do not include it in main branch, use tracing & log or cliclack for cli" },
{ path = "std::println", reason = "it is okay to use during development, but please do not include it in main branch, use tracing & log or cliclack for cli" },
{ path = "std::eprintln", reason = "it is okay to use during development, but please do not include it in main branch, use tracing & log or cliclack for cli" },
]
disallowed-methods = []
disallowed-types = []