-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.editorconfig
More file actions
21 lines (14 loc) · 1.03 KB
/
.editorconfig
File metadata and controls
21 lines (14 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Rules in this file were initially inferred by Visual Studio IntelliCode from the C:\Users\TimCorey\source\repos\VSZipper codebase based on best match to current usage at 1/3/2022
# You can modify the rules from these initially generated values to suit your own policies
# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
[*.cs]
#Core editorconfig formatting - indentation
#use soft tabs (spaces) for indentation
indent_style = space
#Formatting - organize using options
#sort System.* using directives alphabetically, and place them before other usings
dotnet_sort_system_directives_first = true
#Style - modifier options
#prefer accessibility modifiers to be declared except for public interface members. This will currently not differ from always and will act as future proofing for if C# adds default interface methods.
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
csharp_style_namespace_declarations=file_scoped:silent