Is there some way to not show a warning for non snake case identifiers? May 12, 2023 by Tarik You can use the allow attribute as such: #[allow(non_snake_case)] fn nonSnakeCase() {} More on attributes here.