andrewabest / Conventional

A suite of convention specifications for enforcing type and style conventions in your codebase
Microsoft Public License
97 stars 29 forks source link

VoidMethodsMustNotBeAsync & AsyncMethodsMustHaveAsyncSuffix only consider public methods #97

Open flakey-bit opened 3 months ago

flakey-bit commented 3 months ago

Conventions VoidMethodsMustNotBeAsyncConventionSpecification & AsyncMethodsMustHaveAsyncSuffixConventionSpecification use type.GetMethods() which only considers public methods.

Is this deliberate? (it caught us out)