putout/packages/plugin-remove-useless-push at master ยท coderaiser/putout

The push() method of Array instances adds the specified elements to the end of an array and returns the new length of the array.

(c) MDN

๐ŸŠPutout plugin adds ability to remove useless push(). The rule fits good with putout/remove-unused-variables.

Checkout in ๐ŸŠPutout Editor.

Install

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

Rule

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

โŒ Example of incorrect code

function get() {
    const a = [];
    const b = [];
    
    a.push(1);
    b.push(2);
    
    return b;
}

โœ… Example of correct code

function get() {
    const a = [];
    const b = [];
    
    b.push(2);
    
    return b;
}

License

MIT