putout plugin adds ability to apply shorthand properties.
npm i @putout/plugin-remove-useless-async
{
"rules": {
"remove-useless-async": "on"
}
}async function show() {
console.log('hello');
}function show() {
console.log('hello');
}MIT