我一直在试图弄清楚如何更改 Prettier 的格式,但似乎无法弄清楚。
Prettier 正在像这样重新编写我的代码:
fetch(endpoint).then(blob =>
blob.json().then(data => cities.push(...data))
);
我希望我的代码像这样重新格式化:
fetch(endpoint)
.then(blob =>blob.json()
.then(data => cities.push(...data))
);
任何帮助将不胜感激!