IDE0059? I can't find it in https://learn.microsoft.com/en-us/visualstudio/ide/code-styles-and-code-cleanup?view=vs-2022IDE0059 is it possible to have the following config values prefer to not use any unused value assignment whatsoever?_ = in my code:csharp_style_unused_value_assignment_preference = discard_variable:none
csharp_style_unused_value_expression_statement_preference = discard_variable:nonefun(); instead of _ = fun(); or int unused = fun();.discard_variable and unused_local_variable, and even if I find the answer to question 1, I doubt a new cleanup will remove the _ = instead of ignoring them. IDE0059 for reference: https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0059?pivots=lang-csharp-vb