Currently the analyzer does not check for an overload that takes a cancellation token. For example, the following interface would result in a diagnostic being reported, but it shouldn't.
interface InterfaceName
{
Task MethodAsync();
Task MethodAsync(CancellationToken cancellationToken);
}