我一直试图找到答案,但我找不到任何东西。希望有人知道快速修复。
当我使用alt + shift + f格式化代码时,结果如下:
app
.get('/', function (req, res) {
res.send('Hello world');
});
我真的想让它看起来像这样:
app.get('/', function (req, res) {
res.send('Hello world');
});
有谁知道怎么做?
由于