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
When a struct that derives the Props macro and is big enough for clippy to trigger the type_complexity warning will still throw the warning even if you bypass it with #[allow(clippy::type_complexity)]
Steps To Reproduce
Steps to reproduce the behavior:
Create a large struct enough to trigger the warning
Add #[derive(Props)
Add #[allow(clippy::type_complexity)]
Expected behavior
Don't throw the warning.
Screenshots
Environment:
Dioxus version: master
Rust version: 1.73
OS info: Windows 11
App platform: freya
Questionnaire
I'm interested in fixing this myself but don't know where to start
I would like to fix and I have a solution
I don't have time to fix this right now, but maybe later
I have no idea 😭
The text was updated successfully, but these errors were encountered:
Problem
When a struct that derives the
Props
macro and is big enough for clippy to trigger thetype_complexity
warning will still throw the warning even if you bypass it with#[allow(clippy::type_complexity)]
Steps To Reproduce
Steps to reproduce the behavior:
#[derive(Props)
#[allow(clippy::type_complexity)]
Expected behavior
Don't throw the warning.
Screenshots
Environment:
freya
Questionnaire
The text was updated successfully, but these errors were encountered: