Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

7.0.0

Latest
Compare
Choose a tag to compare
@vitorbal vitorbal released this 31 May 08:06
· 22 commits to master since this release

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,
};