我正在使用 VS Code 并且为了格式化我的代码,我使用了 formatter CTRL + SHIFT + I
。它工作正常,但我希望能够将我的代码格式化为以这种方式对齐:
前:
export const apiConfig = {
protocol: 'https',
url: 'www.example.com',
timeoutSec: 15
}
后:
export const apiConfig = {
protocol: 'https',
url: 'www.example.com',
timeoutSec: 15
}
有什么办法设置吗?.editorconfig 的任何特定设置?