When I write my code like this:
I ask PhpStorm to reformat my code, and it does like this:
Ugly... How can I tell PhpStorm to not align params like this and leave it as it is?
Code sample:
export const scanIntervals = ({
intervals,
duration,
start = 0,
end = 1440,
rounding = 10,
}) => intervals.some((interval) => {
console.log('Hello World');
})
P.S. Sorry for my bad English


Settings/Preferences | Editor | Code Style | [LANGUAGE] | Wrapping and Braces-- most likely one of theAlign when multilineoptions. Would be good if you could provide an actual code sample as a text (so it can be copy-pasted into preview area and checked with few options)Wrapping and Bracestab) -- I want to compare it to mine (just export it and share somehow). In my testsFunction declaration parameters | Align when multilinedoes trigger such big indent.