Skip to content
New issue

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

ElementAccessExpression + SimpleAssignmentExpression with StringConcatentation #131

Closed
belav opened this issue Apr 23, 2021 · 3 comments
Closed
Labels

Comments

@belav
Copy link
Owner

belav commented Apr 23, 2021

This used to format a little better, but still was weird. Now it is even worse.

attrs[
    "class"
] = HtmlHelper.ValidationInputCssClassName +
" " +
currentValue;
// should probably be
attrs["class"] = 
    HtmlHelper.ValidationInputCssClassName +
    " " +
    currentValue;
@belav belav added type:bug Something isn't working area:formatting labels Apr 23, 2021
@belav
Copy link
Owner Author

belav commented May 4, 2021

Probably related

        httpContext.Response.Headers[
            HeaderNames.XFrameOptions
        ] = "SAMEORIGIN1111111111111111111111";
// should be
        httpContext.Response.Headers[HeaderNames.XFrameOptions]
            = "SAMEORIGIN1111111111111111111111";

@belav
Copy link
Owner Author

belav commented Jul 19, 2021

I believe this should wait til after #7

@belav
Copy link
Owner Author

belav commented Oct 19, 2021

The second case will be addressed in #451

@belav belav closed this as completed Oct 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant