Skip to content

Latest commit

 

History

History

README.md

@putout/plugin-remove-useless-async NPM version Dependency Status

putout plugin adds ability to apply shorthand properties.

Install

npm i @putout/plugin-remove-useless-async

Rule

{
    "rules": {
        "remove-useless-async": "on"
    }
}

❌ Incorrect code example

async function show() {
    console.log('hello');
}

✅ Correct code Example

function show() {
    console.log('hello');
}

License

MIT