2020-05-02 12:04:26 +01:00
|
|
|
[*]
|
|
|
|
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}]
|
2020-05-05 14:30:00 +01:00
|
|
|
# Does not seem to work...
|
|
|
|
dotnet_diagnostic.CA1303.severity = none
|
|
|
|
dotnet_diagnostic.CA1056.severity = none
|
2020-05-07 17:03:20 +01:00
|
|
|
dotnet_diagnostic.CA1034.severity = none
|
|
|
|
dotnet_diagnostic.CA1054.severity = none
|
2020-05-02 12:04:26 +01:00
|
|
|
# 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
|
2020-05-05 14:30:00 +01:00
|
|
|
|
|
|
|
# Custom disabled
|