Skip to content

Commit 8fa09ee

Browse files
committed
Don't allow improper_ctypes
Most of what this crate does is interact with C, so the lint should be useful. It can be disabled on a case-by-case basis as needed. There are a few fixes needed for enums, which will be going away anyway (#4419). Additionally, switch the `bad_style` lint to the newer name `nonstandard_style`.
1 parent 3d10441 commit 8fa09ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
#![allow(
55
renamed_and_removed_lints, // Keep this order.
66
unknown_lints, // Keep this order.
7-
bad_style,
7+
nonstandard_style,
88
overflowing_literals,
9-
improper_ctypes,
109
unused_macros,
1110
unused_macro_rules,
1211
)]

0 commit comments

Comments
 (0)