diff --git a/earthly/spectral/Earthfile b/earthly/spectral/Earthfile index 5eb75e229..0c9dd4058 100644 --- a/earthly/spectral/Earthfile +++ b/earthly/spectral/Earthfile @@ -3,7 +3,7 @@ VERSION 0.8 # cspell: words ruleset spectral-base: - FROM harbor.shared-services.projectcatalyst.io/dockerhub/library/stoplight/spectral:6.13.1 + FROM harbor.shared-services.projectcatalyst.io/dockerhub/stoplight/spectral:6.13.1 WORKDIR /work LINT: diff --git a/examples/rust/clippy.toml b/examples/rust/clippy.toml index 2a139cd09..3e9f94142 100644 --- a/examples/rust/clippy.toml +++ b/examples/rust/clippy.toml @@ -3,5 +3,5 @@ allow-expect-in-tests = true allow-panic-in-tests = true arithmetic-side-effects-allowed = ["num_bigint::BigInt"] disallowed-macros = [ - { path = "std::fmt::Debug", reason = "Debug Formatting not permitted in production release code.\nUse #[cfg_attr(debug_assertions, derive(Debug)] instead." }, + { path = "std::fmt::Debug", reason = "Debug Formatting not permitted in production release code.\nUse `#[cfg_attr(debug_assertions, derive(Debug))]` instead." }, ]