I wish there was an js/ts option to make dprint convert from ``` { name: name, id: id, avatar: avatar, timestamp: Date.now(), save: function () { // save message } } ``` to ``` { name, id, avatar, timestamp: Date.now(), save () { //save message } } ``` (Examples from https://fireship.dev/shorthand-properties)
I wish there was an js/ts option to make dprint convert from
to
(Examples from https://fireship.dev/shorthand-properties)