-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.editorconfig
More file actions
25 lines (20 loc) · 623 Bytes
/
Copy path.editorconfig
File metadata and controls
25 lines (20 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# IDE0130: Namespace does not match folder structure
dotnet_diagnostic.IDE0130.severity = silent
# IDE0251: Make member 'readonly'
dotnet_diagnostic.IDE0251.severity = silent
# Enable XML documentation warnings only for source code
[src/**/*.cs]
dotnet_diagnostic.CS1591.severity = warning
[*.cs]
indent_style = space
indent_size = 4
dotnet_sort_system_directives_first = true
csharp_style_var_for_built_in_types = true
csharp_style_var_when_type_is_apparent = true
dotnet_diagnostic.IDE0005.severity = error