Alasdair

Results 14 issues of Alasdair

When selecting multiple lines, the following URL gets generated: ```https://gitlab.com/../package.json#L23-L26``` However, this does not select anything since the correct syntax is: ```https://gitlab.com/../package.json#L23-26``` Notice the lack of `L` on the last...

Given the following swagger file (valid), swagger tools fails to validate it. ```Error: cannot read property properties of null``` It is assuming that all keys under "paths" are paths and...

This doesn't give access to a nested value in reference to the object which it is from. If I want to modify something, this doesn't let me do so.

Given an example like the following, it doesn't seem possible to catch the error and handle it without crashing the server: ``` app.ws('/', (ws, req) => { try { ws.on('message',...