David Edmondson

Results 33 comments of David Edmondson

We're experimenting with this on a fork, but it requires additional permissions (commenting on PRs). There's just not enough room on build status.

I like the idea of multiple statuses, but it would definitely need to be configurable. We're a bit edge case in that we'll (eventually) have over 1000 individual files to...

This looks like it might be fairly simple to fix. I've hacked in a userland fix for screaming snake case with this: ```tsx type IsScreamingSnakeCase = Split extends ( |...

Here's another repro case using Next.js, but for an incremental game built in React. https://github.com/threehams/incremental-game-jam-2/tree/emotion-speed To see it in action: 1. Start up the server with `yarn dev` or `npm...

Both versions get 95 scores, it's not the right project to test your issue. This is a project which is small and very quick to render/hydrate, but updates at 60fps.

I've published a fork at https://www.npmjs.com/package/truecar-resize-observer-polyfill. The only difference is the global type fix. This package hasn't had a release in 3 years, so you may want to look at...

The FAB is a tough one, since it fits into general questions about material motion and transformation. https://material.google.com/motion/transforming-material.html https://material.google.com/motion/choreography.html There isn't really anything about the FAB that makes it different...

Walking the render tree as a collection step is common - react-async-component, react-apollo, loadable-components, and isomorphic-relay all take this approach. In the case of this library, it's capable of doing...

I'm not sure if this is possible at all in TypeScript at the moment. ```typescript interface WithString { a: string; } interface WithFunction { a?: { func: (event: any) =>...

I'm having the same issue with a different type of HOC. Is there a way we could manually hint to the parser (through comment or code) that something returns a...