-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy path.editorconfig
More file actions
26 lines (19 loc) · 822 Bytes
/
.editorconfig
File metadata and controls
26 lines (19 loc) · 822 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
root = true
[*]
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.{csproj,md,props,targets,yml}]
indent_size = 2
[*.cs]
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = false
# CA2254: Template should be a static expression
# See https://github.com/dotnet/roslyn-analyzers/issues/5626
dotnet_diagnostic.CA2254.severity = none
# CA2255: The ModuleInitializer attribute should not be used in libraries
dotnet_diagnostic.CA2255.severity = none
# IDE0073: File header
dotnet_diagnostic.IDE0073.severity = warning
file_header_template = Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the MIT license.\nSee the LICENSE.txt file in the project root for more information.