EditorConfig
EditorConfig copied to clipboard
A very generic .editorconfig file supporting .NET, C#, VB and web technologies.
Edit: Moved these settings to: https://github.com/RehanSaeed/EditorConfig/issues/76. More settings listed below. See https://github.com/dotnet/roslyn/pull/50358 ``` # IDE2000, AllowMultipleBlankLines dotnet_style_allow_multiple_blank_lines_experimental = false:warning # IDE2001, AllowEmbeddedStatementsOnSameLine csharp_style_allow_embedded_statements_on_same_line_experimental = false:warning # IDE2002, AllowBlankLinesBetweenConsecutiveBraces csharp_style_allow_blank_lines_between_consecutive_braces_experimental =...
See https://github.com/dotnet/roslyn/issues/44201#issuecomment-761672157 We currently use both the old `[rule] = [value]:[severity]` syntax and the new [rule].[RuleId].[severity] syntax side by side. After 16.9 the old syntax should not be needed anymore...
Fixes https://github.com/RehanSaeed/EditorConfig/issues/46
### Describe the feature Several settings are currently experimental but will soon be published formerly: - https://github.com/dotnet/roslyn/issues/60539 When this happens, update the .editorconfig. ### Rules ```editorconfig # IDE2000, AllowMultipleBlankLines dotnet_style_allow_multiple_blank_lines_experimental...
Fixes #60, #73, #46 - Adds the new settings. Marked them all with `# NEW` to make them easy to find. - Reorders the settings based on the .NET docs....
Currently, there is no way to prevent the const fields to use all upper case. Even though in .editorconfig, already defined to be pascal_case only, but it doesn't seem to...
https://learn.microsoft.com/en-us/visualstudio/ide/text-spell-checker?view=vs-2022
### Describe the feature UTF-8 with BOM is the standard used by Visual Studio. There are comments around advocating for its use, such as this one: https://github.com/dotnet/docs/pull/19794#issuecomment-668619665 I'm aware there...
Would be nice as this is the file extension used for .NET Razor Pages