When I use Prettier to format this code:
export default function CategoryItem({ name, imageUrl, idx, active, handlePress }) {
...
Because it is more than 80 characters wide, it formats it into this:
export default function CategoryItem({
name,
imageUrl,
idx,
active,
handlePress,
}) {
But what I want to format it into something with less lines but doesn't exceed the 80 character limit:
export default function CategoryItem({
name, imageUrl, idx, active, handlePress,
}) {
I couldn't find such a setting in Prettier in Visual Studio Code.
