Skip to content

Commit 84a02e1

Browse files
committed
Allow various name convention lints.
1 parent f3b766d commit 84a02e1

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

src/test/ui/run-pass/ctfe/mozjs-error.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_upper_case_globals)]
1213

1314
struct CustomAutoRooterVFTable {
1415
trace: unsafe extern "C" fn(this: *mut i32, trc: *mut u32),

src/test/ui/run-pass/uniform-paths/basic-nested.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314
// edition:2018
1415

src/test/ui/run-pass/uniform-paths/basic.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314
// edition:2018
1415

src/test/ui/run-pass/uniform-paths/macros-nested.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314
// edition:2018
1415

src/test/ui/run-pass/uniform-paths/macros.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314
// edition:2018
1415

src/test/ui/run-pass/union/union-c-interop.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_snake_case)]
1213

1314
// ignore-wasm32-bare no libc to test ffi with
1415

src/test/ui/run-pass/union/union-packed.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_snake_case)]
1213

1314
#![feature(untagged_unions)]
1415
#![feature(repr_packed)]

0 commit comments

Comments
 (0)