I'm running Prettier.js (VSCode plugin)/prettier-eslint-cli
. It formats method arguments that go over the 80 character limit as the following (putting each argument on a new line).
someMethod(
argumentOne,
argumentTwo,
argumentThree,
argumentFour,
argumentFive, // Hits 80 character word wrap here
argumentSix,
argumentSeven
) {
// Some codes
}
Is there a way to modify the options so it formats the arguments to try to fit 80 characters on each row? Instead of just adding them to a new line each time.
someMethod(argumentOne, argumentTwo, argumentThree, argumentFour,
argumentFive, argumentSix, argumentSeven) {
// Some codes
}