Results 10 comments of David Kuridža

The OpenAPI Specification (both 2x and 3x) states the [Schema Object](https://swagger.io/specification/#schema-object) is based on the JSON Schema Core and JSON Schema Validation. The JSON Schema Validation states the following at...

Hi @adamaltman, thank you for the explanation, I was not aware of the `additionalProperties`. I'm looking forward to seeing the feature added, let me know if I can help in...

@tatomyr no problem, good things come to those who wait :)

A possible solution seems to be setting [Go Toolchain](https://go.dev/doc/toolchain), for example: ```shell $ golangci-lint run -v ... ERRO Running error: context loading failed: failed to load packages: failed to load...

Swagger 2.0 defines the security as a list, see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#security-requirement-object for details. Changing the code to should resolve the problem: ```yaml security: - bearer: [] ```

Not sure what exactly is wrong, will try to look into it a bit later. Please don't hesitate to chip in :)

> Thanks for this! > > You can take a look at [the sibling PR](https://github.com/Byron/google-apis-rs/pull/509) for a fix. I rebased against the latest mainline and looked at #509, but can't...

Would it be possible to create a new release? Thank you.

Had the same issue, it seems to work with `--watch=always`: ```shell tailwindcss -i input.css -o output.css --watch=always ```