tkalmar
tkalmar
The attributes set [here](https://github.com/shakee93/vue-toasted/blob/master/src/js/toast.js#L265-L266) are redundant. > Elements with the role status have an implicit aria-live value of polite and an implicit aria-atomic value of true. It would be nice...
Hi, looking for the current version is a funny experience, there are at least four different sources for "current" https://immutables.github.io/ -> 2.8.2 https://github.com/immutables/immutables/releases 2.8.8 https://twitter.com/ImmutablesOrg 2.7.3 [MavenCentral](https://mvnrepository.com/artifact/org.immutables/value) 2.9.0 Which one...
Incorrect validation of css calc in combination with var (missing upstream sync with css-validator)
``` Test #some { --myvar: 0; margin-top: calc(0px * (1 - var(--myvar))); margin-bottom: calc(0px * var(--myvar)); } ``` ``` Error: CSS: margin-top: The types are incompatible. At line 8, column...
replace unneded ``` with`'`. Remove unneded console.log Fix Parameter on debug call. This should get rid of the errors in https://github.com/pimlie/nuxt-matomo/pull/6
Casing is hard
I can specify the default value for an `@ArraySchema` with f.e. ``` @ArraySchema(arraySchema = @Schema(defaultValue = "123")) ``` The OAS3.0 states `default - The default value represents what would be...
### Is there an existing issue for this? - [X] I have searched the existing issues ### This issue exists in the latest npm version - [X] I am using...
At the moment this runner swallows all jest output. When run with --randomize and (with or without --showSeed) the seed is not visible. This makes it hard/impossible to rerun the...
When executing `echo 1 2 3|awk {$NF++;print}` the result is `1 2 3 ` Reading the manpage the `$` should have higher precedence than `++` so i expect the result...