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
from #1100:
code void foo({String? value, int? value2}) {} String bar(String value) => ""; void main() { return foo( value: bar( "", ) ); } actual result void foo({String? value, int? value2}) {} String bar(String value) => ""; void main() { return foo( value: bar( "", )); } expected result it could instead add the missing trailing comma so that it gets formatted correctly: void main() { return foo( value: bar( "", ), ); } irl example this also screws up the tree lines in the flutter intellij plugin: class _State extends State<MyHomePage> { @override Widget build(BuildContext context) { return GestureDetector( child: Row( children: const [Text("Foo")], )); } }
void foo({String? value, int? value2}) {} String bar(String value) => ""; void main() { return foo( value: bar( "", ) ); }
void foo({String? value, int? value2}) {} String bar(String value) => ""; void main() { return foo( value: bar( "", )); }
it could instead add the missing trailing comma so that it gets formatted correctly:
void main() { return foo( value: bar( "", ), ); }
this also screws up the tree lines in the flutter intellij plugin:
class _State extends State<MyHomePage> { @override Widget build(BuildContext context) { return GestureDetector( child: Row( children: const [Text("Foo")], )); } }
The text was updated successfully, but these errors were encountered:
Duplicate of #753?
Sorry, something went wrong.
No branches or pull requests
from #1100:
The text was updated successfully, but these errors were encountered: