[*] indent_style = space [*.{cs,csx,vb,vbx}]] indent_size = 4 insert_final_newline = true charset = utf-8-bom [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}] indent_size = 2 [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}] indent_size = 2 [*.{cs,vb}] # Does not seem to work... dotnet_diagnostic.CA1303.severity = none dotnet_diagnostic.CA1056.severity = none dotnet_diagnostic.CA1034.severity = none dotnet_diagnostic.CA1054.severity = none # Sort using and Import directives with System.* appearing first dotnet_sort_system_directives_first = true dotnet_style_require_accessibility_modifiers = always:warning # Avoid "this." and "Me." if not necessary dotnet_style_qualification_for_field = false:warning dotnet_style_qualification_for_property = false:warning dotnet_style_qualification_for_method = false:warning dotnet_style_qualification_for_event = false:warning # Code-block preferences csharp_prefer_braces = true:warning csharp_prefer_simple_using_statement = true:warning # Custom disabled