- type
exception Foo({name: string, msg: string}) and run formatter
- notice still single line
- add doc comment:
/** foo */
exception Foo({name: string, msg: string})
and run formatter
4. notice how formatter forces multiline:
/** foo */
exception Foo({
name: string,
msg: string,
})
see also #7946
exception Foo({name: string, msg: string})and run formatterand run formatter
4. notice how formatter forces multiline:
see also #7946