Ignore more clippy lints at workspace level

This commit is contained in:
Taiki Endo
2024-07-02 00:32:42 +09:00
parent 048abf9a2a
commit a4f3fb44a5
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
# Clippy configuration
# https://doc.rust-lang.org/nightly/clippy/lint_configuration.html
allow-private-module-inception = true
avoid-breaking-exported-api = false
disallowed-names = []
disallowed-macros = [
@@ -10,4 +11,5 @@ disallowed-methods = [
{ path = "std::env::remove_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
{ path = "std::env::set_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
]
disallowed-types = []
disallowed-types = [
]