Prettier: Preserve parenthesis around multiline expressions?

99 Views Asked by At

Prettier is removing the parenthesis wrapping multiline expressions in our code. Is there any way to convince prettier to ignore these?

Input (with parenthesis I want to preserve):

  const result = (foo, bar) => (
    someObject.someFunction(foo).anotherFunction(bar)
  );

Prettier output:

  const result = (foo, bar) =>
    someObject.someFunction(foo).anotherFunction(bar);

I see that prettier will preserve parenthesis around multiline JSX. And there was a discussion of allowing parenthesis around general expressions, which to me seemed to be closed without resolution.

We have a large codebase adhering to the Airbnb Style Guide (which uses the default ESLint rule implicit-arrow-linebreak: 'beside'). This convention appears hundreds if not thousands of times in our code.

0

There are 0 best solutions below