-
Notifications
You must be signed in to change notification settings - Fork 11
/
.editorconfig
42 lines (28 loc) · 1.28 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
[*.cs]
# CA1717: Only FlagsAttribute enums should have plural names
dotnet_diagnostic.CA1717.severity = silent
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none
# CA3075: Insecure DTD processing in XML
dotnet_diagnostic.CA3075.severity = none
# CA5369: Use XmlReader For Deserialize
dotnet_diagnostic.CA5369.severity = none
# CA2227: Collection properties should be read only
dotnet_diagnostic.CA2227.severity = none
# CA1308: Normalize strings to uppercase
dotnet_diagnostic.CA1308.severity = silent
# CA1822: Member LoadScreenshotOfTest does not access instance data and can be marked as static (Shared in VisualBasic)
dotnet_diagnostic.CA1822.severity = silent
# CA1034: Nested types should not be visible
dotnet_diagnostic.CA1034.severity = none
# IDE0059: Unnötige Zuweisung eines Werts.
csharp_style_unused_value_assignment_preference = discard_variable:none
# IDE0075: Simplify conditional expression
dotnet_diagnostic.IDE0075.severity = none
# IDE0038: Use pattern matching
dotnet_diagnostic.IDE0038.severity = none
# CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1707.severity = silent
# CA1028: Enum Storage should be Int32
dotnet_diagnostic.CA1028.severity = silent
dotnet_diagnostic.CA5369.severity = silent