JAVASCRIPT OBJECT INDENTION

Hello,
Can the javascript object identition formatting be customized so that the following format is valid?
var test = {
a: "1",
b: {
"c": "2"
}
};
If we format this code (Ctrl + K + D) the result currently looks like this:
var test = {
a: "1",
b: {
"c": "2"
}
};
Regards
Expected: https://pastebin.com/vStqxQ1g
Actual: https://pastebin.com/qXxLAwAh
Hi Kai,
We have fixed the indentation for Javascript parser, I've demo project and fixed dll here:
https://drive.google.com/open?id=18mi09FzYvsv3VQ4DCC5HEVSjxF5X7L0e
In the upcoming release we will also include javascript-parser based on Microsoft TypeScript engine, which will have more options for customizing indentation, I've uploaded typescript demo project as well.
regards,
Andrew
Hello,
Thanks a lot for the fast response.
It looks good now.
Regards