diff --git a/Cargo.toml b/Cargo.toml index a1e37e085..459b8ed06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -178,6 +178,9 @@ clippy.too_many_lines = "allow" clippy.unreadable_literal = "allow" clippy.wildcard_imports = "allow" # we use this sparingly +# clippy::restriction lints that are set to allow (to note why we aren't using them) +clippy.shadow_unrelated = "allow" # would use except for + # clippy lints that are set to deny clippy.should_panic_without_expect = "deny" diff --git a/all-is-cubes-wasm/Cargo.toml b/all-is-cubes-wasm/Cargo.toml index 3b30b90f1..c1ac769b4 100644 --- a/all-is-cubes-wasm/Cargo.toml +++ b/all-is-cubes-wasm/Cargo.toml @@ -140,6 +140,9 @@ clippy.too_many_lines = "allow" clippy.unreadable_literal = "allow" clippy.wildcard_imports = "allow" # we use this sparingly +# clippy::restriction lints that are set to allow (to note why we aren't using them) +clippy.shadow_unrelated = "allow" # would use except for + # clippy lints that are set to deny clippy.should_panic_without_expect = "deny"