lua-language-server
                                
                                 lua-language-server copied to clipboard
                                
                                    lua-language-server copied to clipboard
                            
                            
                            
                        Request to allow mutiline `@type` values
Sometimes, a @type value can be very long, i.e.
---@type {filepath: string?, type: 'unknown'|'binary'|'stock'|'path', loader: function}
Of course, while I could clean-up the above by replacing type with its own alias, I still think it would be nice to be able to do this:
---@type {
---  filepath: string?,
---  type: 'unknown'|'binary'|'stock'|'path',
---  loader: function
---}