Currently, I've integrated Prettier into my workflow, but I've encountered an issue with arrow functions in JavaScript. For example:
arg => console.log(arg)
However, Prettier automatically formats it as:
(arg) => console.log(arg)
This formatting adjustment isn't to my liking. Is there a way to disable this behavior?