Artur Kozak
Artur Kozak
I added `console.firebase.google.com` to the list of "domains to open [..] with left-click" in the browser addon's settings. I explicitly wanted to redirect only the `console` subdomain, cause I'm logged...
**Description** Indentation for functions with a long, multiline argument list behaves differently for abstract and concrete functions -- see example. The error message is also weird, as it says to...
Hello! I found this font a couple days ago, and it looks so nice I want to try it both in my IDE and terminals 😄 To do that, I...
Added a type to extract keys that can have nullish values. Useful for example in one of my util functions: ```typescript export function pickDefinedEntries( obj: T, ): MarkOptional { //...
If I follow the readme, and install ParsePy using `pip install `, and later list packages using `pip freeze`, it reports the latest PyPi version: ``` (tmpenv) [...]$ pip install...
First of all, congrats for making this awesome package! I was looking for a solution to just properly span the wallpaper over my not-so-simple 3 monitor setup, never expected to...
Hello! I'm migrating from ethlint and found the same issue that I [reported there](https://github.com/duaraghav8/Ethlint/issues/264) some time ago :) In an inherited contract, the constructor often just calls the base constructor,...
This is more of a question than a bug report -- IMO [immutable variables](https://solidity.readthedocs.io/en/v0.7.0/contracts.html#constant-and-immutable-state-variables) should be allowed to be treated as constants, since they in fact cannot be changed. Currently...
Hi! First of all, thanks for this nice lib :) I have a question: what happens, when you call an event and there are no listeners on its slot? It...
I'd like to enforce side-effect-only imports to be in a separate import group at the top of the file -- the ones without the `from` keyword, e.g. `import 'reflect-metadata'` or...