Ivan “CLOVIS” Canet

Results 62 issues of Ivan “CLOVIS” Canet

I'd like to create a new output format for [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/), which is inspired by the GFM format. I need to create Gradle tasks for this new format. Looking...

question
runner: Gradle plugin

If I create a `mkdocs.yml` file with the contents: ```yml site_name: OpenSavvy Playground site_author: OpenSavvy & contributors ``` The generated feed contains: ```xml OpenSavvy Playground OpenSavvy & contributors ``` The...

bug
compliance

Hi! Would it be possible to add a configuration option to only display inline inspections in VCS-modified files? They can be distracting when navigating to other files (e.g. generated files,...

Pairwise testing seems to be a technique of reducing the combinatiorial explosion of parameterized tests while still attempting to test all unique-enough situations. It is documented in more details [here](https://www.pairwise.org/)....

[Spine](https://gitlab.com/opensavvy/groundwork/spine) is an alpha-quality library for declaring Ktor endpoints in common code, with no code generation etc: ```kotlin object Api : RootResource("v1") object Users : StaticResource("users", parent = Api) {...

**Use case** I often happen to want to declare a suspending computation meant to be executed later, but do not have access to a scope at that moment. If I...

enhancement

**Use case** A very common pattern I see very often in codebases is having a bunch of independent read-only operations that are pre-requisites to one write operation. Since the read-only...

question

**Which version of Kotest are you using** - Kotest library: 5.9.0 - Kotest plugin: 6.0.0.M1 After upgrading from Kotlin 2.0.20 to 2.1.0, I get: ``` w: file:///…/gradle-conventions/examples/kotlin/core/src/commonTest/kotlin/HelloWorldTest.kt The compiler plugin...

bug 🐛
framework 🏗️

I have a situation in which I'm reading data from a stream. However, the stream is already split into chunks of a known size, where each chunk is parsed independently....

Hi, I am working on a project with a complex parser that pulls data from `Source`. If incorrect data is fed in, the parser throws an exception. The problem is...

enhancement