forked from dotnet/ResXResourceManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
28 lines (23 loc) · 868 Bytes
/
Copy path.editorconfig
File metadata and controls
28 lines (23 loc) · 868 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
[*]
indent_style = space
trim_trailing_whitespace = true
[*.cs]
indent_size = 4
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = none
# CA1062: Validate arguments of public methods
dotnet_diagnostic.CA1062.severity = none
# CA1303 pass a literal string as parameter message
dotnet_diagnostic.CA1303.severity = none
# CA1724: The type name X conflicts in whole or in part with the namespace name 'System.X'
dotnet_diagnostic.CA1724.severity = none
# CA1812: X is an internal class that is apparently never instantiated...
dotnet_diagnostic.CA1812.severity = none
# CA2008: Do not create tasks without passing a TaskScheduler
dotnet_diagnostic.CA2008.severity = none
# IDE0063: Using statement can be simplified
dotnet_diagnostic.IDE0063.severity = none
[*.xaml]
indent_size = 2
[*.xml]
indent_size = 2