Jon Dufresne

Results 101 comments of Jon Dufresne

I was able to get this to work in https://github.com/testing-library/dom-testing-library/pull/1311. But right now the types are failing and I'm uncertain how to resolve them. I'll copy the rationale here which...

I'll try using the Sass documentation to not need this. Closing.

Maybe Active Record Doctor could ignore third party models and tables more generally. I experience a similar warning and so have globally ignored these tables. But other third party gems...

I'd like to throw out another potential case of a misused `Object.values()` when it is called on an array: `Object.values(array)`. This is a construct that I have found in my...

> You went through making the library PEP8 compliant at some point - did your PEP8 linter complain about the class names? Standard flake8 does not check for CamelCase class...

> What comments should be retained in this mode? As one of the issue reporters, here’s my perspective: I find the "Offense count" comment useful. It helps identify when a...

> Hi , in handleClick function, use HTMLElement instead of HTMLAnchorElement, because even though you wrote as = "a" , TypeScript still thinks it as ,so it is gives you...

> const anchor = event.currentTarget as HTMLAnchorElement; The goal of this issue report is to avoid type assertions and instead provide a type interface that adapts the underlying element, whether...

I found another workaround that may be more useful for anyone looking for a solution, first export the environment variable: ``` export OPENSSL_ENABLE_SHA1_SIGNATURES=1 ``` https://fedoraproject.org/wiki/SHA1SignaturesGuidance > For package builds, you...