microsoft / microsoft/typespec
Feedback on decorator collapsing
Open
ide
- Dominant language
- Java
- Stars
- 5.9k
- Forks
- 394
- Avg merge
- 1d 23h
- Merged PRs (30d)
- 104
Description
VSCode has tooling that lets you collapse the decorator block, but it compresses it does to a single decorator line. The architects expected to show no decorators.
**uncollapsed**
```cadl
@A
@B(...)
@C
op myOp(...)
```
**current collapsed**
```cadl
@A
op myOp(...)
```
**expected collapsed**
```cadl
op myOp(...)
```
Contributor guide
Assessment
This issue has not been assessed yet.