The root .editorConfig is missing VB configuration
Before you open an issue
If the issue is:
- A simple typo or similar correction, you can submit a PR. See the contributor guide for instructions.
Issue description The .EditorConfig file only has limited formatting rules for VB only below
[*.{cs,vb}]
charset = utf-8-bom
[*.vb]
# Modifier preferences
visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion
Target framework N/A Check the .NET target framework(s) being used, and include the version number(s).
- [X] .NET Core
- [X] .NET Framework
- [X] .NET Standard
If using the .NET Core SDK, include dotnet --info output. If using .NET Framework without the .NET Core SDK, include info from Visual Studio's Help > About Microsoft Visual Studio dialog.
dotnet --info output or About VS info
<replace>
Does PR #1895 fix that ?
Looks very good maybe perfect. My only question is some of the options use C# terms like static or internal where VB uses Shared and Friend and those options are available in .editorConfig. Does something internal do the translation so that the shared setting work with both VB and C#, trying it out I seem to get the desired result in VB or at least get no suggestions.