python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there support for .editorconfig in Visual Studio 2022?
I open Visual Studio 2022 and create a new empty solution.
I add an .editorconfig file containing:
root = true
[*]
end_of_line = lf
indent_style = space
indent_size = 3
tab_width = 3
I add a new C# ...

Neutrino
Votes: 0
Answers: 1
Rider - .editorconfig: File scoped namespaces not respected
I'm using Rider 2021.3.3 (latest version), and when I have the latest .NET SDK on my machine (.NET 6).
Inside the .editorconfig file, I have added the following:
csharp_namespace_body = file_scoped
Wh...
Complexity
Votes: 0
Answers: 0
Visual Studio doesn't put space in between 'internalclass' due to EditorConfig
When I create a new class using Visual Studio, it produces the following:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace...
nop
Votes: 0
Answers: 1
Define naming style as camelCase OR PascalCase
Is it possible to define a naming style (in VS options or .editorconfig) as either camelCase or PascalCase (the programmer can write it either way, both are accepted), without disabling the whole chec...

Christoph
Votes: 0
Answers: 0