Sublime Forum

How to remove quotes in an object's properties

#1

The question is simple. Is there any shortcuts or plugins for converting { "name": "John", "age": 19 } to { name: "John", age: 19 }?

0 Likes

#2

Hook up an automated JavaScript formatter such as prettier as a Build System.

(unquoted keys are allowed in JavaScript, but not in JSON)

1 Like

#3

Thanks! Prettier is really powerful, but seems to be an overkill in my case…

0 Likes