eslint/require-await Pedantic 
What it does 
Disallow async functions which have no await expression.
Why is this bad? 
Asynchronous functions in JavaScript behave differently than other functions in two important ways:
- The return value is always a Promise.
- You can use the awaitoperator inside of them.
The primary reason to use asynchronous functions is typically to use the await operator, such as this:
async function fetchData(processDataItem) {
  const response = await fetch(DATA_URL);
  const data = await response.json();
  return data.map(processDataItem);
}Asynchronous functions that don’t use await might not need to be asynchronous functions and could be the unintentional result of refactoring.
Note: this rule ignores async generator functions. This is because generators yield rather than return a value and async generators might yield all the values of another async generator without ever actually needing to use await.
Examples 
Examples of incorrect code for this rule:
async function foo() {
  doSomething();
}Examples of correct code for this rule:
async function foo() {
  await doSomething();
}How to use 
To enable this rule in the CLI or using the config file, you can use:
oxlint --deny require-await{
  "rules": {
    "require-await": "error"
  }
}