We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mix_attributes_ordering
Implement a quick fix for the mix_attributes_ordering rule to automatically reorder attributes within a Style declaration. The quick fix should:
before the quick fix
final style = Style( $flex.gap(3), $box.color.red(), $flex.row(), $box.borderRadius(3), $text.style.color.red(), );
after the quick fix
final style = Style( $flex.gap(3), $flex.row(), $box.color.red(), $box.borderRadius(3), $text.style.color.red(), );
This quick fix will greatly improve developer productivity by automating the process of fixing attribute ordering issues in Style declarations.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Implement a quick fix for the
mix_attributes_ordering
rule to automatically reorder attributes within a Style declaration. The quick fix should:Example
before the quick fix
after the quick fix
This quick fix will greatly improve developer productivity by automating the process of fixing attribute ordering issues in Style declarations.
The text was updated successfully, but these errors were encountered: