@putout/plugin-remove-useless-operand 🐊Putout plugin adds ability to remove useless operand. Install npm i @putout/plugin-remove-useless-operand Rule { "rules": { "remove-useless-operand": "on" } } ❌ Example of incorrect code a = a + b; b += 1; ✅ Example of correct code a += b; ++b; License MIT