Amanda Mitchell
Amanda Mitchell
When the tool generates a suppression for this pattern: ```js function doSomething(/* note */) { ... } ``` The `/* note */` comment gets moved outside of the parentheses. It...
When the tool encounters this pattern: ```js somethingWithAViolation(); // a comment ``` The trailing comment is moved to being a leading comment, so that it looks like this: ```js //...
Particularly for projects that have prettier enabled, this will allow the tool to produce the best possible output.
Currently, the default parser always emits spaces for indentation, which is unsightly when the rest of the file uses tabs. Although this can be worked around by invoking a code...
I recently switched from the default session store to `RedisSessionStateStore` on a site that I maintain. Since doing so, I have seen periodic errors logged with the following form: ```...
It appears that Pownce has been unavailable for five and a half years. A newer consumer might make for a better example.
According to the spec for [Fixed Fields](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#fixed-fields-14) and [Patterned Fields](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#patterned-fields-1) of the [Responses Object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#responses-object), it is permissible to use a `$ref` object to describe API responses. Currently, attempting to parse...
This error was encountered while using the most recently published NuGet package. ## Steps to reproduce Call `OpenApiParser.Parse` with this document: ```json { "components": { "schemas": { "hasUserMedia": { "type":...