gpt4 book ai didi

javascript - 有没有办法阻止 prettier/prettier-now 将函数参数分解为新行

转载 作者:行者123 更新时间:2023-12-04 17:21:13 25 4
gpt4 key购买 nike

当使用 prettier/prettier-now 在保存时格式化时,当一个函数环绕另一个函数时,它会换行,我想知道是否有一个停止这种行为?
例如:
期望的输出:

app.get('/campgrounds/:id', catchAsync(async (req, res) => {
const campground = await Campground.findById(req.params.id);
res.render('campgrounds/show', { campground });
}));
Prettier/Prettier-now 输出:
app.get(
'/campgrounds/:id',
catchAsync(async (req, res) => {
const campground = await Campground.findById(req.params.id);
res.render('campgrounds/show', { campground });
})
);

最佳答案

您可以通过使用告诉 prettier 停止格式化代码块
评论//更漂​​亮-忽略
例如:

A(
1, 0, 0,
0, 1, 0,
0, 0, 1
)

// prettier-ignore
B(
1, 0, 0,
0, 1, 0,
0, 0, 1
)
will be transformed to:

A(1, 0, 0, 0, 1, 0, 0, 0, 1);

// prettier-ignore
B(
1, 0, 0,
0, 1, 0,
0, 0, 1
)

关于javascript - 有没有办法阻止 prettier/prettier-now 将函数参数分解为新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66149802/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com