forked from Cysharp/MemoryPack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
34 lines (26 loc) · 754 Bytes
/
Copy path.editorconfig
File metadata and controls
34 lines (26 loc) · 754 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
26
27
28
29
30
31
32
33
34
root = true
[*]
indent_style = space
insert_final_newline = true
indent_style = space
trim_trailing_whitespace = true
[*.{sh,yaml,yml,rules}]
charset = utf-8
indent_size = 2
end_of_line = lf
[*{_AssemblyInfo.cs,.notsupported.cs}]
generated_code = true
# C# files
[*.cs]
charset = utf-8-bom
indent_size = 4
csharp_style_namespace_declarations = file_scoped
dotnet_style_require_accessibility_modifiers = never
# VSTHRD101: Avoid async void
# VSTHRD101: Avoid unsupported async delegates
dotnet_diagnostic.VSTHRD100.severity = none
dotnet_diagnostic.VSTHRD101.severity = none
# VSTHRD003: Avoid awaiting foreign Tasks
dotnet_diagnostic.VSTHRD003.severity = none
# VSTHRD111: Use ConfigureAwait(bool)
dotnet_diagnostic.VSTHRD111.severity = error