Willem
Willem
Just ran into this as well. Given the following enum, and an `int` database column with value `5` (so `A+C`). ```cs [Flags] enum ExampleFlagEnum { A = 1
Agreed, the potential "overhead" of unused functionality in the main library is not that important. The administrative overhead of having to install and multiple packages up to date is way...
This might be a lot easier to do using the action config instead of in the tags `yml`. For example: ```yml steps: - uses: TimonVS/pr-labeler-action@v3 with: default-label: 'unknown' # Any...
Moving users away from `valueChanges` implicitly means moving the project away from following the Angular Forms style. Using `startsWith(...)` fixes the issue and when needed in multiple locations, it can...
I second that, actually the CodeMaid project itself uses different formatting settings than some other projects I work on, forcing me to change settings manually when switching projects. I often...
Been thinking about it, and actually `.editorconfig` would make it possible to store the more complicated comment formatting settings in a reasonable way since it can dynamically add keys. Since...
More searching leads me to believe the built-in `.editorconfig` support is part of Roslyn: https://docs.microsoft.com/en-us/dotnet/api/microsoft.codeanalysis.formatting?view=roslyn-dotnet https://github.com/dotnet/roslyn/blob/master/src/Workspaces/Core/Portable/Formatting/FormattingOptions.cs (and others in that folder)
Ok, the code in the [`Microsoft.CodeAnalysis.Options`](http://source.roslyn.io/#Microsoft.CodeAnalysis.Workspaces/Options/IOption.cs) namespace is where the work is done (can't link to namespace, so choose a random file instead). This file [`CSharpCodeStyleOptions.cs`](https://github.com/dotnet/roslyn/blob/master/src/Workspaces/CSharp/Portable/CodeStyle/CSharpCodeStyleOptions.cs) is a nice example...
As soon as you have even one line in a comment without a leading space, it will be ignored by the formatter. ```cs //example of // comment that will not...
@MelGrubb great idea! Should even be very easy to implement, since the formatter already knows if it's formatting XML or not, it just requires a setting update.