missingAsyncSuffixAsync functions must have names that end with Async.small-rules/require-async-suffixRequire async function names to end with Async.
missingAsyncSuffixAsync functions must have names that end with Async.This rule accepts one options object after the severity.
async function getAll(): Promise<string> { return "value";}async function getAllAsync(): Promise<string> { return "value";}