You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
We are working on porting an existing codebase to rust. Our ice interface looks like this
warning: variant `eUNDEFINED` should have an upper camel case name
--> src/gen/armarx/mod.rs:18:5
|
18 | eUNDEFINED = 0i32,
| ^^^^^^^^^^ help: convert the identifier to upper camel case: `EUndefined`
|
= note: `#[warn(non_camel_case_types)]` on by default
Describe the solution you'd like
Adding #[allow(non_camel_case_types)] in front of enums supresses this warning.
Describe alternatives you've considered
I added it manually, but this is not a feasible solution.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
We are working on porting an existing codebase to rust. Our ice interface looks like this
This generates a lot of warnings like this
Describe the solution you'd like
Adding
#[allow(non_camel_case_types)]
in front of enums supresses this warning.Describe alternatives you've considered
I added it manually, but this is not a feasible solution.
The text was updated successfully, but these errors were encountered: