-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy path.editorconfig
More file actions
22 lines (15 loc) · 612 Bytes
/
.editorconfig
File metadata and controls
22 lines (15 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[*.cs]
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = silent
# CA2000: Dispose objects before losing scope
dotnet_diagnostic.CA2000.severity = none
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = none
# IDE0008: Use explicit type
csharp_style_var_for_built_in_types = false:silent
# IDE0008: Use explicit type
csharp_style_var_elsewhere = false:silent
# IDE0008: Use explicit type
csharp_style_var_when_type_is_apparent = false:silent
# CA1062: Validate arguments of public methods
dotnet_diagnostic.CA1062.severity = none