Sébastien Règne
Sébastien Règne
ESLint configuration is written in JavaScript. You can already use `RegExp` in the configuration: ```javascript export default [{ rules: { "import/no-unresolved": ["error", { ignore: [/\.img$/.source] }], } ]}; ``` It's...
You can add an `ignoreGlob` option: an array of glob strings. To avoid a breaking change, you deprecate the `ignore` option. And in [`eslint-module-utils`](https://github.com/import-js/eslint-plugin-import/blob/v2.31.0/utils/moduleVisitor.js#L29), you filter on both lists (`ignoreGlob`...
`semver-utils` is in the `"devDependencies"` that aren't published. It should be put in `"dependencies"`.
The problem occurred with version `17.0.0`. There is no error with version `16.14.20`. I think Vite / Rollup don't handle bundles of `.d.ts` files very well. If the `semver-utils` source...
I still have the same error. The import of `semver-utils` is still in the [`index.d.ts`](https://cdn.jsdelivr.net/npm/[email protected]/build/index.d.ts) file. I think your configuration change doesn't fix the problem, because you define a path...
I think it was the pull request [mochajs/mocha#5086](https://github.com/mochajs/mocha/pull/5086/files#diff-cb50ae188ac768fbc193b36aefd9ab26f4d201d06d0f956d66f16cbc2860d4d2R106-R109) (released in [Mocha v10.5.1](https://github.com/mochajs/mocha/releases/tag/v10.5.1)) that broke Stryker. The `collect-files` method no longer returns the list of `files`, but an object with the...
Cast Kodi has scrapers to get video from a page. There are specific scrapers (e.g., for YouTube) and generic scrapers that work on any page. For your Invidious instance, there...
Cast Kodi requests [`host_permissions`](https://developer.mozilla.org/Add-ons/WebExtensions/manifest.json/host_permissions) to access websites _without cross-origin restrictions_ using [`fetch()`](https://developer.mozilla.org/Web/API/Window/fetch). This permission also grants many rights that are not used by the extension. I would like to request...
Here is a solution for this issue: - Replace the use of `cosmiconfigSync()` by `cosmiconfig()` (cf. [_Loading JS modules_ with cosmiconfig](https://github.com/cosmiconfig/cosmiconfig#loading-js-modules)). Add an `await` and make the `getConfiguration()` function asynchronous....
@CoralineAda I applied your suggestions.