This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
Breaking Changes
We've added a new rule, object-shorthand
, that's turned on by default with the option "properties"
:
// Good
const foo = {
x,
y,
z,
};
// Bad
const foo = {
x: x,
y: y,
z: z,
};