Results 34 issues of Corey Farrell

`node -r @babel/register ./script.mjs` worked in node.js 12.1.0 or below (as long as `--experimental-modules` was not passed to node). Since 12.2.0 this no longer works due to nodejs/node#27417. The problem...

## Description I'm using `ava` to control selenium-webdriver for tests run in Firefox and Chrome. It cannot be known synchronously if the browser can be run. An example flow could...

enhancement
help wanted
scope:assertions

Do you have a module that calculates and exports a reasonable default value for concurrency? For example what is done in https://github.com/sindresorhus/got/pull/393. I'm planning to use p-map in some parts...

I always keep `xo` installed globally so I can usually run lint without running `npm install` on the local repo. This does not work for me after updating my global...

bug
help wanted

A few days ago I published [eslint-plugin-istanbul](https://github.com/istanbuljs/eslint-plugin-istanbul#readme). I'm not sure if this is something `xo` would be interested in adding to the next major (either as an error or just...

I'm unable to get nyc working with `.mjs` files in node.js 12.2.0+. I've created a demo repo at https://github.com/coreyfarrell/nyc-esm - `npm it` will show the failure: ``` nyc --require=esm ./ok.mjs...

This is outside my knowledge but it seems like a preset which enabled `jsx` and `typescript` parser plugins would be useful to people? Maybe even set extension to include vue,...

I'd like to propose a refactor of the instrument process for the next semver-major. Right now babel-plugin-istanbul uses istanbul-lib-instrument, but this is backwards. Specifically this causes babel-plugin-istanbul to (indirectly) have...

Need to add css `@media (prefers-color-scheme: dark)` to better support users running a dark theme. The bright white background is very harsh when the eyes are adjusted to everything else...

Per @jdalton request on #73. One possible mitigation might be to have the instrumenter insert an `/* istanbul ignore file */` comment.