-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
39 lines (26 loc) · 1.16 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
[*.cs]
# ReSharper properties
resharper_blank_lines_around_single_line_auto_property=1
resharper_blank_lines_around_single_line_field=0
resharper_csharp_int_align_comments=true
resharper_instance_members_qualify_declared_in=base_class
resharper_int_align_assignments=true
resharper_place_accessorholder_attribute_on_same_line=false
resharper_place_field_attribute_on_same_line=false
dotnet_remove_unnecessary_suppression_exclusions=category:ReSharper
# CA1028: Enum Storage should be Int32
dotnet_diagnostic.CA1028.severity=silent
# CA1051: Do not declare visible instance fields
dotnet_diagnostic.CA1051.severity=silent
# CA1062: Validate arguments of public methods
dotnet_diagnostic.CA1062.severity=silent
# CA1700: Do not name enum values 'Reserved'
dotnet_diagnostic.CA1700.severity=silent
# CA1711: Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1711.severity=silent
# CA1815: Override equals and operator equals on value types
dotnet_diagnostic.CA1815.severity = silent
# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity=silent
# CA2225: Operator overloads have named alternates
dotnet_diagnostic.CA2225.severity=silent