-
Notifications
You must be signed in to change notification settings - Fork 742
Automatically allow non_snake_case, non_camel_case_types, non_upper_case_globals
#562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
See also #373 |
Hi! If you have any questions regarding this issue, feel free to make a comment here, or ask it in the If you intend to work on this issue, then add |
@highfive: assign me |
Hey @framlog! Thanks for your interest in working on this issue. It's now assigned to you! |
automatically allow non rust naming conventions + related issue: #562 I just added those attributes at the root mod. And I'm not sure whether it should be better if we could set this setting in `build.rs`.
Have you made any progress, @framlog? Any questions? |
Oh, I missed #580. |
@jdm It should works imo. |
Bindings generated by bindgen are not expected to follow Rust naming conventions, so it's a reasonable default to automatically add
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
to the generated module.The text was updated successfully, but these errors were encountered: