Simon Hauck

Results 13 comments of Simon Hauck

As a temporary workaround you could also do something like this ``` tasks.withType() { enabled = false } ```

In some cases this might be an option, but not all open source projects might want to provide a devcontainer definition. The main idea is that if a project does...

I think this is a great idea. One easy way to implement this, would be to take the project directory and only collect the top level .kts. files. That would...

In our project we have quite a few configuration names. For example we generate license packages, api-clients, static frontend resources and copy zip files as resources in our projects. So...

Maybe it would be possible if the kotlinLangStyle method would not set the values directly and instead would invoke the convention method. Then the user could still overwrite the parameters...

From my point of view, we can close this issue. It could be possible to use the convention values, but on the other hand this is in my opinion rather...

Yes I will finish my current PR an then have a look :)

@christophsturm For a fast workaround you could add the tasks manually. This is not so great, but at least you can format/check the code ;) ```kotlin tasks.register("customFormat") { source =...

I have an idea what could be the problem. From the docs on the method ``SourceDirectorySet::getSourceDirectories()`` the docs say ``` /** * Returns the source directories that make up this...