File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ dotnet_style_qualification_for_property = false:suggestion
47
47
dotnet_style_qualification_for_method = false :suggestion
48
48
dotnet_style_qualification_for_event = false :suggestion
49
49
50
- # Types: use keywords instead of BCL types, and permit var only when the type is clear
51
- csharp_style_var_for_built_in_types = false :suggestion
52
- csharp_style_var_when_type_is_apparent = false : none
53
- csharp_style_var_elsewhere = false :suggestion
50
+ # Types: use keywords instead of BCL types, and prefer var instead of the explicit type
51
+ csharp_style_var_for_built_in_types = true :suggestion
52
+ csharp_style_var_when_type_is_apparent = true : suggestion
53
+ csharp_style_var_elsewhere = true :suggestion
54
54
dotnet_style_predefined_type_for_locals_parameters_members = true :suggestion
55
55
dotnet_style_predefined_type_for_member_access = true :suggestion
56
56
You can’t perform that action at this time.
0 commit comments