Earlier quoted context omitted.
Why not just change it to a high value? Or prettier-ignore exceptional lines?
if you put a high lineWidth value, you'll have your object literals or destructuring mostly one-lined, etc.. often not desirable (for 4+ props) That's mostly why I don't like prettier, sometimes you want a bit of control over code formatting when several options are possible, prettier don't allow it. I use vscode formatter (actually it's TypeScript compiler formatter) instead Other things I dislike with prettier, lik…
eg, if you dont like
const {a, b, c} = props;
you can do const {
//
a,
b,
c
} = props;