When I alt+shift F to fix my JS code in Visual Studio Code, it indents keys within objects, so instead of:
let test = {
rob: 1,
bob: 2,
kob: 3,
}
it fixes it like so:
let test =
{
rob: 1,
bob: 2,
kob: 3,
}
Would appreciate help how to disable it in VS but keep using alt+shift F.