Object.assign
(prefer-object-spread)The --fix
option on the command line can automatically fix some of the problems reported by this rule.
When Object.assign is called using an object literal as the first argument, this rule requires using the object spread syntax instead. This rule also warns on cases where an Object.assign
call is made using a single argument that is an object literal, in this case, the Object.assign
call is not needed.
Introduced in ES2018, object spread is a declarative alternative which may perform better than the more dynamic, imperative Object.assign
.
Examples of incorrect code for this rule:
Object.assign({}, foo)
Object.assign({}, {foo: 'bar'})
Object.assign({ foo: 'bar'}, baz)
Object.assign({ foo: 'bar' }, Object.assign({ bar: 'foo' }))
Object.assign({}, { foo, bar, baz })
Object.assign({}, { ...baz })
// Object.assign with a single argument that is an object literal
Object.assign({});
Object.assign({ foo: bar });
Examples of correct code for this rule:
Object.assign(...foo);
// Any Object.assign call without an object literal as the first argument
Object.assign(foo, { bar: baz });
Object.assign(foo, Object.assign(bar));
Object.assign(foo, { bar, baz })
Object.assign(foo, { ...baz });
This rule should not be used unless ES2018 is supported in your codebase.
This rule was introduced in ESLint 5.0.0-alpha.3.
© JS Foundation and other contributors
Licensed under the MIT License.
https://eslint.org/docs/rules/prefer-object-spread