diff --git a/ProjectScope.ProjectName/.editorconfig b/ProjectScope.ProjectName/.editorconfig index 0cd0690..e9a9646 100644 --- a/ProjectScope.ProjectName/.editorconfig +++ b/ProjectScope.ProjectName/.editorconfig @@ -36,6 +36,15 @@ dotnet_style_predefined_type_for_locals_parameters_members = true # Code Style csharp_style_var_when_type_is_apparent = true +## Diagnostics + +# don't warn about unused unity event functions +dotnet_diagnostic.IDE0051.severity = none +# don't warn about making field readonly +dotnet_diagnostic.IDE0044.severity = none +# don't warn about unassigned private field +dotnet_diagnostic.CS0649.severity = none + #### Resharper/Rider Rules #### # https://www.jetbrains.com/help/resharper/EditorConfig_Properties.html @@ -75,3 +84,5 @@ resharper_unity_redundant_formerly_serialized_as_attribute_highlighting=error resharper_unity_unresolved_component_or_scriptable_object_highlighting=error resharper_use_name_of_instead_of_type_of_highlighting=error resharper_wrong_public_modifier_specification_highlighting=error +resharper_async_void_lambda_highlighting=hint +resharper_async_void_method_highlighting=hint