Bela VanderVoort
Bela VanderVoort
@iJoris sorry for the delay, I lost track of this issue. Did you ever see the exception again? The `dotnet-tools.json` file you have looks good to me.
It is possible to run dotnet-format from the command line without changing whitespace and from my understanding (without actually using it in the real world) that would avoid any potential...
That makes sense. I feel the need to address every suggestion that rider makes, so I can relate.
I started with just this in an `.editorconfig`, and `dotnet format whitespace` doesn't have a lot of changes. ``` indent_style = space indent_size = 4 trim_trailing_whitespace = true insert_final_newline =...
The only option CSharpier currently supports is `printWidth`. I could be convinced that it makes sense to read the `max_line_length` value from an editorconfig in place of `printWidth` but no...
Probably related ```c# // breaking after the = makes this look better var cbTempSubkeys = checked(_symmetricAlgorithmSubkeyLengthInBytes + _hmacAlgorithmSubkeyLengthInBytes); // but then this looks better with checked next to = var...
```c# httpContext.Response.Headers[ HeaderNames.XFrameOptions ] = "SAMEORIGIN1111111111111111111111"; // should be httpContext.Response.Headers[HeaderNames.XFrameOptions] = "SAMEORIGIN1111111111111111111111";
These all need to end up consistent too ```c# var someLongValue_________________ = memberAccessExpression[ elementAccessExpression ].theMember______________________________; var someLongValue_________________ = memberAccessExpression[ elementAccessExpression ].theMember______________________________(); var someLongValue_________________ = memberAccessExpression( elementAccessExpression ).theMember______________________________; var someLongValue_________________ =...
some more examples ```c# var node = FindToken(span.Start, findInsideTrivia).Parent.FirstAncestorOrSelf( (a, span) => a.FullSpan.Contains(span), span ); var node = FindToken(span.Start, findInsideTrivia) .Parent() .FirstAncestorOrSelf((a, span) => a.FullSpan.Contains(span), span);
This is semi-related ``` HttpActionDescriptor actionDescriptorMock = new Mock() { CallBase = true }.Object;