Johann Pardanaud
Johann Pardanaud
The `Duration` class in the standard library provides everything you need to analyze its state: - `isNegative` - `isPositive` - a `ZERO` instance Those things are missing in the `DateTimePeriod`...
Akkurate is currently missing global configurations, this could be brought with preconfigured validators: ```kotlin // Declare as many preconfigured validators you need, instead of a single global configuration. val BooksValidator...
The goal is to avoid instantiating a new `Configuration` for each validator creation, as mentionned by @bejibx in [this discussion.](https://github.com/nesk/akkurate/discussions/49)
Calling `interactInstance.unset()` doesn't seem to free all the references to the element. I've got a vanilla reproducible example where: - A checkbox allows to mount/unmount a `Drag Me!` - When...
**Describe the bug** In the response body, if you change the following field: ```yaml content: application/json: schema: properties: id: oneOf: - type: integer - type: string required: - id type:...
**Describe the bug** In the request body, if you change the following field: ```yaml requestBody: content: application/json: schema: type: object properties: name: type: integer required: - name required: true ```...
Version: 0.50.1 I have the following directory structure: ``` . ├── dprint.jsonc ├── index.js ├── readme.md ├── subdir1 │ └── index.js └── subdir2 ├── dprint.jsonc ├── index.js └── index.ts ```...