I just upgrade my app from prettier 1.19.1 to 2.5.1 with eslint-plugin-prettier. But I am facing massive changes inlinter. And I would like to have previous behavior on this rule:
// prettier v1
const [
currentRouteName,
currentParams
] = getActiveRoute(currentState);
// prettier v2 - note line break after "="
const [currentRouteName, currentParams] =
getActiveRoute(currentState);
Is it possible to override this rule that change line break (seems to be related to printWith but this settings haven't change in my .prettierrc) ?