Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一行代码。
在保存更漂亮之后将行重新格式化为 2。
如何阻止 prettier 将线条一分为二?
您需要printWidth在.prettierrc文件中增加:
printWidth
.prettierrc
该数字是尝试换行之前的字符数,以阻止行被换行,设置一个高数字,如1000.
1000
{ "printWidth": 1000 }
来自更漂亮的文档
打印宽度: 指定打印机将换行的行长。