csharpier
csharpier copied to clipboard
CSharpier is an opinionated code formatter for c#.
This could be improved on ```c# public interface ITypeScriptCompilationService : IDependency { Guid CompileThemePreviewResources( ThemeVersion themeVersion, IList previewResources, out ApplicationOutput compilerOutput, Guid? previewId = null ); void MarkThemeVersionsThatNeedToBeCompiled(IEnumerable updatedTypeScriptResourceIds); IEnumerable...
We're using megalinter https://megalinter.io/v6/descriptors/csharp_csharpier/ to ensure code is formatted however it requires developers to install the same version of csharpier that megalinter uses otherwise there's a mismatch. Being able to...
I've upgraded the dotnet-csharpier tool from 0.23.0 to 0.27.2. It now wants to change the sort order of all my `using` directives. My `.editorconfig` has: ``` dotnet_sort_system_directives_first = false ```...
I did a fresh install of Windows 11 build 22621.2715, installed CSharpier plugin 1.4.8 and Visual Studio hangs after a few seconds after opening a solution. I can reproduce this...
Tried to incorporate your feedback. Personally think it's just fine to have an enum with just two values, so I went along with it. Had to make EndOfLine public as...
still exists for csharpier v0.24.1 + rider plugin v1.3.7 + macOS + globally installed tool. since it's hard to set `PATH` environment variable for macOS GUI apps, the `PATH` env...
**Environments** - IDE Version: VSCode 1.85.1 - Extension Version: v1.5.2 - CSharpier Version: 0.26.7 - Operating System: Arch Linux **Log Output** ["ERROR" - 7:41:38 PM] CSharpier was not found so...
closes #1162
It seems as simple as using this in the csproj ``` false ```
**Input:** ```cs bool isGlobal = some_random_condition_that_is_not_so_short() || or_else_some_other_condition_that_makes_this_line_long________; int total = lets_do_a_long_sum__________ + 42_000_000 + another_summand____________________ + last_one; int total = lets_do_a_long_sum__________ + 42_000_000 + another_summand____________________ + last_one_that_makes_this_excessive; ``` **Output:**...