@putout/plugin-reuse-duplicate-init
v8.0.1
Published
šPutout plugin adds ability to reuse duplicate init
Downloads
47,718
Maintainers
Readme
@putout/plugin-reuse-duplicate-init 
Functions are one of the fundamental building blocks it contains set of statements that performs a calculations, takes some input and returns an output. To use a function, you must define it somewhere in the scope from which you wish to call it.
(c) MDN
šPutout plugin adds ability to reuse duplicate init. Merged with `@putout/plugin-variables#reuse-duplicate-init.
Install
npm i @putout/plugin-reuse-duplicate-init -DRule
{
"rules": {
"reuse-duplicate-init": "on"
}
}ā Example of incorrect code
const putout = require('putout');
const {
a,
b,
operator,
} = require('putout');
const {replaceWith} = operator;ā Example of correct code
const putout = require('putout');
const {
a,
b,
operator,
} = putout;
const {replaceWith} = operator;License
MIT
