-
Notifications
You must be signed in to change notification settings - Fork 32
/
.editorconfig
33 lines (21 loc) · 905 Bytes
/
.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
[*.cs]
# IDE0056: Use index operator
csharp_style_prefer_index_operator = true:silent
# IDE0054: Use compound assignment
dotnet_style_prefer_compound_assignment = true:silent
# IDE0057: Use range operator
csharp_style_prefer_range_operator = true:silent
# CA1012: Abstract types should not have constructors
dotnet_diagnostic.CA1012.severity = silent
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = true:silent
# CA1010: Generic interface should also be implemented
dotnet_diagnostic.CA1010.severity = silent
# CA1062: Validate arguments of public methods
dotnet_diagnostic.CA1062.severity = silent
# CA1063: Implement IDisposable correctly
dotnet_diagnostic.CA1063.severity = silent
# CA1815: Properties should not return arrays
dotnet_diagnostic.CA1815.severity = silent
# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity = silent