Bruno Medeiros
Bruno Medeiros
What about this approach to fix https://github.com/ng-bootstrap/ng-bootstrap/issues/1276?
I've currently set a assert profile like this: ``` module.exports = { ci: { ... assert: { ... assertions: { "categories:performance": "warn", "categories:best-practices": "warn", "categories:seo": "warn", "uses-long-cache-ttl": "off", "uses-http2": "off"...
With `docker`, we can save multiple images inside the same archive: ``` docker save img1:latest image2:latest > archive.tar ``` Currently, if an archive is generated like that, we get the...
If I turn this flag on in my `tsconfig.json`, the following error shows up: ERROR in node_modules/fusioncharts/index.d.ts(205,71): error TS7006: Parameter 'output' implicitly has an 'any' type Can you please fix...
I'm trying to write a test for a blocking function that uses coroutines internally, wrapped by a `runBlocking` call. the basic flow would be represented by something like: ```kotlin @Test...
**What is your use-case and why do you need this feature?** `JsonContentPolymorphicSerializer` is a very useful abstract class and I have used it quite a few times, but now I...
Consider the following code: ``` fun foo(): Foo { return dev.foo.p1.p2.Foo("bar") } ``` ## Expected Behavior Code should be accepted as is. ## Observed Behavior `chain-method-continuation` rule fails. ## Steps...