azu
azu
``` await fetch("https://httpstat.us", { method: "HEAD" }) ``` It looks like that https://httpstat.us/ top page does not allow HEAD request. I do not know that this is expected behavior. Probably,...
https://github.com/textlint-rule/textlint-rule-no-dead-link/issues/138#issuecomment-1019400545 This `finalRes` line does not donsider to treat the request error. It may be a bug. Workaround: We can also use altenerive site like https://httpbin.org/ as workaround.
Similar Issue: https://github.com/textlint-rule/textlint-rule-no-dead-link/issues/146
Intersting. I think it is good idea. Probably, this option will require an array of [origins](https://url.spec.whatwg.org/#origin) or pattern to disallow. I can't think of a suitable name. `disallow`, `internal`, `private`...
Change to Async: - Config Loading - textlintrc.mjs supports require Async API: https://github.com/davidtheclark/cosmiconfig/pull/283 - Rule/Preset/Filter/Plugin Loading - Need to use Dynamic Import to load a module written in ESM ```mermaid...
We will introduce new API like `createTextlint` for supporting Async APIs. v13 continue to support current `TextLintEngine` and `TextFixEngine` for backward compatible. - #902 New `createTextlint` support ESM rules/plugins. In...
We have two config - .textlintrc config file - CLI options - It override textlintrc It is just idea that we can implement these as separated loader and merge these....
I've written a recipe: [textlint + SARIF output + code scanning](https://github.com/textlint-rule/textlint-rule-no-dead-link#textlint--sarif-output--code-scanning)
Node.js support `node:test` as native - [Test runner | Node.js v21.6.1 Documentation](https://nodejs.org/api/test.html)
--experimental parallel option should be removed. It is not maintain. #1200