@putout/plugin-remove-unreachable-code
v1.2.0
Published
putout plugin adds ability to find and remove unreachable code
Downloads
50,598
Maintainers
Readme
@putout/plugin-remove-unreachable-code
putout
plugin adds ability to find and remove unreachable code.
Install
npm i @putout/plugin-remove-unreachable-code
Rule
{
"rules": {
"remove-unreachable-code": "on"
}
}
❌ Incorrect code example
function hi() {
return 'world';
console.log('hello');
}
function log() {
throw Error('error');
console.log('hello');
}
✅ Correct code Example
function hi() {
return 'world';
}
function log() {
throw Error('error');
}
License
MIT