-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy path.editorconfig
49 lines (33 loc) · 1.68 KB
/
.editorconfig
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
[*.cs]
# CA1707: Remove the underscores from member name Wirehome.Core.App.AppServicePythonProxy.unregister_panel(string).
dotnet_diagnostic.CA1707.severity = none
# CA1305: Specify IFormatProvider
dotnet_diagnostic.CA1305.severity = none
# CA1032: Implement standard exception constructors
dotnet_diagnostic.CA1032.severity = none
# CA2227: Collection properties should be read only
dotnet_diagnostic.CA2227.severity = none
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none
# CA1308: Normalize strings to uppercase
dotnet_diagnostic.CA1308.severity = none
# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity = none
# CA1056: Uri properties should not be strings
dotnet_diagnostic.CA1056.severity = none
# CA1822: Member Pack does not access instance data and can be marked as static (Shared in VisualBasic)
dotnet_diagnostic.CA1822.severity = suggestion
# CA2234: Pass system uri objects instead of strings
dotnet_diagnostic.CA2234.severity = none
# CA1055: Uri return values should not be strings
dotnet_diagnostic.CA1055.severity = none
# CA1724: The type name Reflection conflicts in whole or in part with the namespace name 'System.Reflection' defined in the .NET Framework. Rename the type to eliminate the conflict.
dotnet_diagnostic.CA1724.severity = none
# CA1054: Uri parameters should not be strings
dotnet_diagnostic.CA1054.severity = none
# CA1068: CancellationToken parameters must come last
dotnet_diagnostic.CA1068.severity = none
# CA2008: Do not create tasks without passing a TaskScheduler
dotnet_diagnostic.CA2008.severity = none
# CA1806: Do not ignore method results
dotnet_diagnostic.CA1806.severity = none