Maxim Orlov

Results 5 comments of Maxim Orlov

I'm guessing it's same issue. Wrapping in an IIFE works: ```js // Works ✅ (async () => { await app.whenReady(); // ... })(); ``` But using top-level await doesn't: ```js...

Here's what @MarshallOfSound had to say about this on Twitter: "This is actually expected behavior that I thought we had better documented. You've caused a deadlock in that code. The...

Yes! This is exactly what I'm looking for. My use case is to paste a deeply nested object in JSON Hero, navigate to the value I want through the UI,...

Not in particular. It's the version I've tested with and am sure it works. What ESLint version are you using?

ESLint v6 has been end of life since late 2020 https://eslint.org/version-support/. Also some of the rules in this config have been added in ESLint v7+. Not planning to support ESLint...