@putout/plugin-add-return-await
v2.1.1
Published
putout plugin adds ability to find and remove test.only calls
Downloads
23,958
Maintainers
Readme
@putout/plugin-add-return-await 
🐊Putout plugin adds ability to find and add return await. Part of @putout/promises.
Install
npm i @putout/plugin-add-return-awaitRule
{
"rules": {
"add-return-await": "on"
}
}❌ Example of incorrect code
async function world() {
return hello();
}✅ Example of correct code
async function world() {
return await hello();
}License
MIT
