Bela VanderVoort

Results 297 comments of Bela VanderVoort

I think I accidentally referenced this in a commit message.

I personally also like sorted imports, but I don't know if csharpier should be concerned with sorting them. So far csharpier has followed a lot of the rationale of prettier....

I think I am starting to feel less and less married to the idea that csharpier will never transform code. There are a lot of useful things it can't do...

Conditional compilation is going to cause some headaches on this. An example ```c# using System; using System.Collections.Generic; using Insite.Common.Dependencies; using Insite.Common.Providers; using Insite.WebFramework.Templating; #if NET6_0_OR_GREATER using Microsoft.AspNetCore.Html; using Microsoft.AspNetCore.Mvc; using...

I think that's the proper way to handle ii. I don't think it will be too difficult to handle but wanted to make sure I didn't forget about it. There...

One concern, how do we decide that it is tabular? If each line has the same number of arguments? What happens if someone adds a new argument to the first...

> Aside: do you have a date planned for the next release? I can make sure it gets out this weekend. I've been releasing less often because I haven't had...

I actually had a coworker asking me about this same feature last week. The original stance of csharpier was to only modify whitespace, and wrapping comments would involve more than...

I had considered this early on - #23. I think it was closed because we decided to not have csharpier changing anything besides whitespace. But there are good arguments for...

My guess is that the plugin ran into something unexpected in the manifest file at `.config/dotnet-tools.json` file. A basic one should look something like this ```json { "version": 1, "isRoot":...