Bela VanderVoort

Results 297 comments of Bela VanderVoort

> Do we have a group type that breaks if its children are longer than its siblings' children? No and the way things work I don't know if it would...

Probably related. Adding a null-coalescing operator caused this change in line breaking ```c# var discontinuedProductIds = result.GetWishListResult.GetProductCollectionResult ?.ProductDtos?.Where(o => o.IsDiscontinued && !o.CanBackOrder) .Select(o => o.Id) .ToHashSet(); var discontinuedProductIds = result.GetWishListResult.GetProductCollectionResult...

Thanks for the reproduction steps. I'm not exactly clear how to download an embedded version of dotnet. It isn't something I'm familiar with and my googling has failed me.

The latest version of the vscode extension should handle this now. It locates dotnet, and then sets DOTNET_ROOT when it runs csharpier. If it can't locate dotnet on the PATH,...

I've run into a similar headache with rider, and do have some code there to ignore specific directories that contain decompiled code. Do you happen to know what directory VSCode...

@sander1095 I'll have to dig into to see how feasible this is. The ranged ignore can be problematic sometimes. In this case I believe the `// csharpier-ignore-start` is leading trivia...

If I recall correctly, putting `?` at the beginning of the line came from how prettier formats javascript. But it appears that javascript requires it there which may be how...

The first pass at this was to just use the `XmlTextWriter`, which fixes indentation to be consistent, but also destroys line breaks. https://github.com/belav/csharpier-repos/pull/63/files?diff=split&w=1 A notable example ![image](https://user-images.githubusercontent.com/3606529/228325820-cebca56a-6d45-4ea0-ab4d-1e22fc55156e.png) Maybe instead for...

Actually, maybe more like what prettier does. Which can be combined with options for files, and at some point also allow custom formatters ```yaml tabWidth: 4 overrides: - files: "*.csproj"...

> 😃 Hi there, I am using both csharpier and prettier in my projects and wondering if this would be some duplicate effort. > > I have been using prettier...