Whenever I use the auto-format shortcut (Shift + Alt + k) in Visual Studio Code inside a file that contains this piece of code -
var keyframes = [
{opacity: 0, transform: 'translate(0, 4em)'},
{opacity: 1, transform: 'translate(0)'}
];
I get this -
var keyframes = [
{ opacity: 0, transform: 'translate(0, 4em)' },
{ opacity: 1, transform: 'translate(0)' }
];
I wonder if there's any way to tell the auto-format not to insert all the spaces?