Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 645 Bytes

File metadata and controls

35 lines (25 loc) · 645 Bytes

@putout/plugin-remove-console NPM version

🐊Putout plugin adds ability to find and remove console.log calls.

Install

npm i @putout/plugin-remove-console

Rule

{
    "rules": {
        "remove-console": "on"
    }
}

❌ Example of incorrect code

const hello = 'world';
console.log(hello);

✅ Example of correct code

const hello = 'world';