You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolves#107.
If set to true dprint will not format this:
```typescript
[].map(() => test({
foo: 1,
bar: 2,
}));
````
to this:
```typescript
[].map(() =>
test({
foo: 1,
bar: 2,
})
);
```
0 commit comments