Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 297 Bytes

no-property-shorthand.md

File metadata and controls

27 lines (19 loc) · 297 Bytes

xxx

✅ This rule is part of the recommended config.

🔧 This rule is auto-fixable.

Fail

var a = 1;
var obj = { a: a };
var obj = { f: function () {} };

Pass

var a = 1;
var obj = { a };
var obj = { f() {} };