Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion earthly/spectral/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion examples/rust/clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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." },
]
Loading