I'm using VS Code and for formating my code I use a formatter CTRL + SHIFT + I. It works fine, but I would like to be able to format my code to be align in this way:
before:
export const apiConfig = {
protocol: 'https',
url: 'www.example.com',
timeoutSec: 15
}
after:
export const apiConfig = {
protocol: 'https',
url: 'www.example.com',
timeoutSec: 15
}
Any way to set it up? Any specific setting for .editorconfig?