From 236eb438ea8e76321d55375d5c929353fed94f33 Mon Sep 17 00:00:00 2001 From: Andrew Khoma Date: Fri, 12 Sep 2025 14:44:10 -0700 Subject: [PATCH 1/2] add stable clippy group --- src/guidelines/universal/M-STATIC-VERIFICATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guidelines/universal/M-STATIC-VERIFICATION.md b/src/guidelines/universal/M-STATIC-VERIFICATION.md index 89e7237..771cebc 100644 --- a/src/guidelines/universal/M-STATIC-VERIFICATION.md +++ b/src/guidelines/universal/M-STATIC-VERIFICATION.md @@ -42,7 +42,7 @@ Undesired lints (e.g., numeric casts) can be opted back out of on a case-by-case cargo = { level = "warn", priority = -1 } complexity = { level = "warn", priority = -1 } correctness = { level = "warn", priority = -1 } -nursery = { level = "warn", priority = -1 } +suspicious = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 } perf = { level = "warn", priority = -1 } style = { level = "warn", priority = -1 } From 1ff43f10da3793329c9d833215cacf59a4857a0e Mon Sep 17 00:00:00 2001 From: Ralf Biedert Date: Mon, 15 Sep 2025 17:28:25 +0200 Subject: [PATCH 2/2] Update M-STATIC-VERIFICATION.md Mark nursery as optional. --- src/guidelines/universal/M-STATIC-VERIFICATION.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/guidelines/universal/M-STATIC-VERIFICATION.md b/src/guidelines/universal/M-STATIC-VERIFICATION.md index 771cebc..5328880 100644 --- a/src/guidelines/universal/M-STATIC-VERIFICATION.md +++ b/src/guidelines/universal/M-STATIC-VERIFICATION.md @@ -42,10 +42,11 @@ Undesired lints (e.g., numeric casts) can be opted back out of on a case-by-case cargo = { level = "warn", priority = -1 } complexity = { level = "warn", priority = -1 } correctness = { level = "warn", priority = -1 } -suspicious = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 } perf = { level = "warn", priority = -1 } style = { level = "warn", priority = -1 } +suspicious = { level = "warn", priority = -1 } +# nursery = { level = "warn", priority = -1 } # optional, might cause more false positives # These lints are from the `restriction` lint group and prevent specific # constructs being used in source code in order to drive up consistency,