Skip to content

Commit b3705b5

Browse files
committed
Temporarily disable broken clippy::pedantic lint group
rust-lang/rust#137640
1 parent b7634e2 commit b3705b5

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ unreachable_pub = "warn"
144144
# unsafe_op_in_unsafe_fn = "warn" # Set at crate-level instead since https://github.com/rust-lang/rust/pull/100081 merged in Rust 1.65 is not available on MSRV
145145
[workspace.lints.clippy]
146146
all = "warn" # Downgrade deny-by-default lints
147-
pedantic = "warn"
147+
# pedantic = "warn" # TODO: ICE https://github.com/rust-lang/rust/issues/137640
148148
as_ptr_cast_mut = "warn"
149149
as_underscore = "warn"
150150
default_union_representation = "warn"

tests/avr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
3737
# unsafe_op_in_unsafe_fn = "warn" # Set at crate-level instead since https://github.com/rust-lang/rust/pull/100081 merged in Rust 1.65 is not available on MSRV
3838
[workspace.lints.clippy]
3939
all = "warn" # Downgrade deny-by-default lints
40-
pedantic = "warn"
40+
# pedantic = "warn" # TODO: ICE https://github.com/rust-lang/rust/issues/137640
4141
as_ptr_cast_mut = "warn"
4242
as_underscore = "warn"
4343
default_union_representation = "warn"

tests/gba/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
3333
# unsafe_op_in_unsafe_fn = "warn" # Set at crate-level instead since https://github.com/rust-lang/rust/pull/100081 merged in Rust 1.65 is not available on MSRV
3434
[workspace.lints.clippy]
3535
all = "warn" # Downgrade deny-by-default lints
36-
pedantic = "warn"
36+
# pedantic = "warn" # TODO: ICE https://github.com/rust-lang/rust/issues/137640
3737
as_ptr_cast_mut = "warn"
3838
as_underscore = "warn"
3939
default_union_representation = "warn"

tests/msp430/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
5555
# unsafe_op_in_unsafe_fn = "warn" # Set at crate-level instead since https://github.com/rust-lang/rust/pull/100081 merged in Rust 1.65 is not available on MSRV
5656
[workspace.lints.clippy]
5757
all = "warn" # Downgrade deny-by-default lints
58-
pedantic = "warn"
58+
# pedantic = "warn" # TODO: ICE https://github.com/rust-lang/rust/issues/137640
5959
as_ptr_cast_mut = "warn"
6060
as_underscore = "warn"
6161
default_union_representation = "warn"

tests/no-std-qemu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
3434
# unsafe_op_in_unsafe_fn = "warn" # Set at crate-level instead since https://github.com/rust-lang/rust/pull/100081 merged in Rust 1.65 is not available on MSRV
3535
[workspace.lints.clippy]
3636
all = "warn" # Downgrade deny-by-default lints
37-
pedantic = "warn"
37+
# pedantic = "warn" # TODO: ICE https://github.com/rust-lang/rust/issues/137640
3838
as_ptr_cast_mut = "warn"
3939
as_underscore = "warn"
4040
default_union_representation = "warn"

tests/xtensa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
3636
# unsafe_op_in_unsafe_fn = "warn" # Set at crate-level instead since https://github.com/rust-lang/rust/pull/100081 merged in Rust 1.65 is not available on MSRV
3737
[workspace.lints.clippy]
3838
all = "warn" # Downgrade deny-by-default lints
39-
pedantic = "warn"
39+
# pedantic = "warn" # TODO: ICE https://github.com/rust-lang/rust/issues/137640
4040
as_ptr_cast_mut = "warn"
4141
as_underscore = "warn"
4242
default_union_representation = "warn"

0 commit comments

Comments
 (0)