Sup guys, do you have something to get optimal formatter with gsap?
With a prettier plugins or another formatters?
Prettier is nice for react,jsx, but became weird with gsap chaining.
What did you use ? any recommendation or special setting ?
Example here, syntax became buggy, look gsap color, because it break lines for a reason i dont know !
Maybe a way to get something like this ? optimal space !
```js
gsap.to('.ActivityTab', 0.6, {
opacity: 1,
scale: 1,
rotation: 0,
y: '0%',
ease: 'elastic.out(1.2, 0.75)',
stagger: {
from: 0,
amount: 0.5,
},
}).delay(0.5);
```