Results 207 comments of Corey Farrell

Some of these rules apply to more than just lit-html, any module which processes HTML in JS templates. I understand that `lit-html` is the primary target but I just want...

eslint supports overriding rules for specific file globs, maybe this module could make it easier to use that functionality, support something like: ```json { "extends": ["plugin:lit/recommended"], "env": {"browser": true}, "overrides":...

See also https://github.com/nodejs/modules/issues/389 for node.js 12.11.0. Looks like they plan to put that change behind the `--experimental-modules` flag but this is a delay rather than a reversal.

Just wanted to share that I created [get-package-type](https://github.com/cfware/get-package-type) for use by nyc to determine how to load `/path/to/nyc.config.js`. I opened a couple issues on the repo to point out potential...

My hope is for the final report to report to state that tests for unavailable browsers to be 'skipped'. Specifically when a specific browser cannot be run it should not...

Agreed that it should be mandatory to return after calling this function. One hesitation about `t.warn` is that you have `t.log`. I've always felt that `t.warn` should exist and be...

`t.cancel` definitely seems better than `t.warn`. ----- Very interesting, I didn't know it was possible to defer the first registration to ava. This might be a solution to my specific...

I've tweaked the way my tests are declared so they do not get created until after the browser is successfully started, though this does have one drawback. An example test...

So in my use case `t.cancel()` would be called before any `t` assertions and be followed by an immediate return: ```js test('test with async resolvable external dependency', async t =>...

@sindresorhus it looks like got/package.json tells ava to use `--loader=ts-node/esm`. Unfortunately node.js does not support chaining multiple `--loader` options.