@putout/plugin-remove-unreferenced-variables

3.1.0 • Public • Published

@putout/plugin-remove-unreferenced-variables NPM version

A variable is a named reference to a value.

(c) MDN

🐊Putout plugin adds ability to find and remove variables without references.

Install

npm i @putout/plugin-remove-unreferenced-variables -D

Rule

{
    "rules": {
        "remove-unreferenced-variables": "on"
    }
}

Example of incorrect code

let a;
let b;

a = 5;
b = 6;

console.log(a);

✅ Example of correct code

let a;

a = 5;

console.log(a);

License

MIT

Package Sidebar

Install

npm i @putout/plugin-remove-unreferenced-variables

Weekly Downloads

16,659

Version

3.1.0

License

MIT

Unpacked Size

5.63 kB

Total Files

4

Last publish

Collaborators

  • coderaiser