I prepend an underscore to the names of my local methods, for example:
private bool _DoSomething() {..}
VS 2019 gives me an IDE1006
(Name Violation) for this construct. Is there a way to suppress the name violation ONLY for this particular naming convention? I don't want to suppress all name violation warnings, just this particular construct.