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
67 lines (46 loc) · 2.04 KB
/
Copy path.editorconfig
File metadata and controls
67 lines (46 loc) · 2.04 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[*]
indent_style = space
trim_trailing_whitespace = true
indent_size = 2
[*.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
# IDE0008: Use explicit type
dotnet_diagnostic.IDE0008.severity = none
# IDE0011: Add braces
dotnet_diagnostic.IDE0011.severity = none
# IDE0046: Convert to conditional expression
dotnet_diagnostic.IDE0046.severity = none
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = none
# IDE0065: Misplaced using directive
dotnet_diagnostic.IDE0065.severity = none
# CS8002: Referenced assembly 'Microsoft.WindowsAPICodePack.Shell, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null' does not have a strong name.
dotnet_diagnostic.CS8002.severity = none
# IDE0045: Convert to conditional expression
dotnet_diagnostic.IDE0045.severity = suggestion
# CA1845: Use span-based 'string.Concat'
dotnet_diagnostic.CA1845.severity = suggestion
# IDE0079: Remove unnecessary suppression
dotnet_diagnostic.IDE0079.severity = none
# CA1014: Mark assemblies with CLSCompliant
dotnet_diagnostic.CA1014.severity = none
# CA1056: URI-like properties should not be strings
dotnet_diagnostic.CA1056.severity = silent
# CA5394: Do not use insecure randomness
dotnet_diagnostic.CA5394.severity = none
# CA1003: Use generic event handler instances
dotnet_diagnostic.CA1003.severity = suggestion