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
List<int> ids = []; var store = await Get<List<PositionAdd>>(Key) ?? [];
First line: extra space before square bracket and space between empty square brackets Second line: space between empty square brackets
List<int> ids = [ ]; var store = await Get<List<PositionAdd>>(Key) ?? [ ];
The text was updated successfully, but these errors were encountered:
CSharpier doesn't respect any editorconfig settings beyond the basics covered here.
That being said, the [ ] was not intentional and and [] seems like the preferred way to format.
[ ]
[]
Sorry, something went wrong.
Fixing some issues with collection expressions
8bdd917
closes #1002 closes #1009
Fixing some issues with collection expressions (#1037)
b12ec2b
Successfully merging a pull request may close this issue.
Expected
Actual
First line: extra space before square bracket and space between empty square brackets
Second line: space between empty square brackets
The text was updated successfully, but these errors were encountered: