Sébastien Règne
Sébastien Règne
`CloseEvent` is part of the [WebSockets specification](https://websockets.spec.whatwg.org/#the-closeevent-interface). I think we need to keep this issue open if we want Node.js to be compliant with this specification.
Standard only exports an object with the `lintText()` and `lintFiles()` functions. [_Is there a Node.js API?_](https://github.com/standard/standard/tree/5ff8441#is-there-a-nodejs-api) This is an instance of the `StandardEngine` class, but the user doesn't know it....
> Want to open a PR for that? I opened the pull request https://github.com/standard/standard-engine/pull/329.
I worked around the bug with this code (and the directory change works): ```JavaScript const results = await standard.lintFiles(["bar.js"], { cwd: process.cwd(), }); ``` I've opened this issue and a...
I created a pull request https://github.com/mozilla/addons-linter/pull/4795 to detect files with an top-level `await` and parse them with `module` type.
Detection works with [`await Promise.resolve();`](https://astexplorer.net/#/gist/50a751246e1ebe68461e28b46b6f1e06/3b25a9ec2c5e0546e0b90f49645953ba5703e55d), but not with [`const foo = await Promise.resolve();`](https://astexplorer.net/#/gist/b1572e78f7941d17aef29d5f1e73da4d/71666265ad0b8a88e68b0dda7b744056b64d9daa). https://github.com/mozilla/addons-linter/pull/4838
The bug in _nwsapi_ has been fixed. I created a PR to update the dependency. - https://github.com/dperini/nwsapi/issues/62 - https://github.com/dperini/nwsapi/pull/79 - https://github.com/jsdom/jsdom/pull/3528
I don't think it's the same problem. I would like `@stryker-mutator/core` to export the `PartialStrykerOptions` type. So that I can define the following type in my `stryker.conf.js`: ```JavaScript /** *...
On reflection, it's not good practice to write a test that depends on an external element. For example, redirecting the output to a file (`npx mocha > report.log`): the tests...
I don't use it (and I don't know how Grunt works). I found this problem by doing the https://github.com/stryker-mutator/stryker-js/pull/4405 pull request.