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
When the field declaration is long, so that the name has to be wrapped, it used to be wrapped with an indent, like this:
class C { final LoremIpsumDolorSitAmetFactory _loremIpsumDolorSitAmetFactory; }
Now there's no indent, and it is harder to read, especially when there are many fields like that.
Also when there's a comment between an annotation and a type, field name is put on a new line:
Before:
@override // ignore: hash_and_equals final int hashCode;
Now:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the field declaration is long, so that the name has to be wrapped, it used to be wrapped with an indent, like this:
Now there's no indent, and it is harder to read, especially when there are many fields like that.
Also when there's a comment between an annotation and a type, field name is put on a new line:
Before:
Now:
The text was updated successfully, but these errors were encountered: