Matyáš Racek
Matyáš Racek
I am pretty confused by what `llvm-lines` is actually measuring. I think @nnethercote raised similar concern on internals some time ago, I just found another pretty confusing instance and I...
JetBrains is working on official support of Vue component libraries through `web-types` helper file. Quasar already generates it since [this PR](https://github.com/quasarframework/quasar/pull/4749), but IDEA still can't read/use all information from it....
1. Pull all icon names from quasar-extras package This is mostly about regexing bunch of css names. Should be pretty straightforward. 2. Generate fake props in icon component in a...
Since some (?) version of Quasar, `$q` injections have typedefs and idea can recognize them. We should therefore generate fake ones only if they are needed. We should probably generate...
This code ```js console.log(transliterate('ýÝ')) ``` prints `yU` instead of `yY` I tried to look at the code where to fix this but I couldn't figure it out, so here is...
[Rule proposal] Warn when referencing props without `props.` prefix in functional component template
**Please describe what the rule should do:** When I use functional components with templates, I very often forget to reference props through props object (`props.user` instead of `user`). This leads...
At the moment, it's only possible to register one publisher per service+event ```js app.service('messages').publish(() => { /* doesn't run */ } app.service('messages').publish(() => { /* overrides the previous publisher */...
When I try to recognize buffer object that is created with [Jimp](https://github.com/oliver-moran/jimp) I get errors. ``` Error in pixReadMem: Unknown format: no pix returned Error in pixGetSpp: pix not defined...
I am not sure how much is this possible, but I would like to use this library compiled do to WASM. I know there are some projects that already compile...