Jonathan Sharpe
Jonathan Sharpe
1. **Why does this happen?** Because, although ESLint does indeed ignore `node_modules/` by default, the *override* does not in terms of deciding whether the TypeScript plugins should be *loaded* (which...
@jshor in your case it appears you _do_ have TypeScript files in `src/`, because that's what you're explicitly linting.
@Gorb as I mentioned above the fix appears to be scheduled for 4.1.
@alvipeo it's a problem with the configuration in CRA, not ESLint itself. Changing ESLint version won't make any difference, this is scheduled for a fix in CRA 4.1.
I don't think you could do this just by adding CSS, it would be a structural change to the layout of the page. Bulrush uses the [navbar component](https://bulma.io/documentation/components/navbar/) for both...
Easiest fix for now is to `npm install -g git+https://github.com/keystonejs/generator-keystone.git`, but it would be helpful to cut a release that doesn't install a [two-and-a-half-year-old beta version](https://github.com/keystonejs/keystone/releases/tag/v4.0.0-beta.5), given that this is...
I've written up [an implementation](https://github.com/textbook/contracts/tree/not) of this, with tests, if there's any interest in a PR/review. In short it adds the syntax `not`, which has lower precedence than `|` or...
Do you mean GitHub Actions? Have you tried https://github.com/marketplace/actions/code-climate-coverage-action?
Jest doesn't require any particular configuration, just run it with `--coverage` to generate the reports. Otherwise it's similar to any other CI environment, as documented [here][1]; run: ``` curl -L...
If you try to provide a local file like `index.html`, rather than a URL, this library creates a simple server using [the `http-server` library](https://www.npmjs.com/package/http-server) so that this file can be...