🐊Putout plugin adds ability to declare variable that was not defined before, including:
- is types:
isFn
,isString
,isNumber
,isObject
,isBool
,isUndefined
,isSymbol
andisNull
; - maybe:
maybeArray
,maybeFn
,maybeEmptyArray
; - wrap:
not
,id
,returns
; - fresh-import:
freshImport
,freshImportDefault
; fixtures
:readFixture(name)
;- properties of
Object
; - wraptile;
- fullstore;
- currify;
- pipe-io;
- pullout;
- simport;
- chalk;
- table;
npm i putout @putout/plugin-declare -D
Add .putout.json
with:
{
"plugins": {
"declare": "on"
}
}
Use options:
- ✅
dismiss
for variables you don't want to declare; - ✅
declarations
to declare variables;
{
"rules": {
"declare": ["on", {
"declarations": {
"hello": "import {hello} from 'world'"
},
"dismiss": [
"assert",
"entries",
"parse",
"stringify",
"defineProperty",
"isArray",
"noop",
"join",
"keys",
"values",
"stopAll",
"once",
"putout",
"simport"
]
}]
}
}
const hello = 'world';
const object = {};
assign(object, {
hello,
});
const hello = 'world';
const object = {};
const {assign} = Object;
assign(object, {
hello,
});
const hello = 'world';
const object = {};
const allKeys = keys(object);
const hello = 'world';
const object = {};
const {keys} = Object;
const allKeys = keys(object);
const object = {};
const allValues = values(object);
const {values} = Object;
const object = {};
const allValues = values(object);
isArray(array);
const {isArray} = Array;
isArray(array);
noop();
const noop = () => {};
noop();
const isFn = (a) => typeof a === 'function';
if (isFn(fn))
fn();
const isFn = (a) => typeof a === 'function';
if (isFn(fn))
fn();
const a = [
...maybeArray(b),
];
const {isArray} = Array;
const maybeArray = (a) => isArray(a) ? a : [a];
const a = [
...maybeArray(b),
];
MIT