Tyler Akins
Tyler Akins
I've tried poking into the issue myself and modifying code so it uses `atblock_pre` and `atblock_post`. It looks like I will need to rewrite the entire block output code because...
I would rather add proper support for the properties. Would you be willing to assemble links to the CSS specs for the various browsers? For instance, typically I have been...
To be honest, the only reason I have not merged this commit is because I'm worried that I'm doing something wrong and this just hides a problem (#4).
Agreed, though I would call it "code" because the spec says "message" instead of "error message". I write code against codes. Having this added as a part of the spec...
I would also want a specific error, not a category. My application could have thousands of reportable errors. I may prefix them like "upstream.e82n" or "db.001i" to categorize them. Each...
@ZhukV I am totally in favor of using a unique string for a code. `155` means nothing to me either, but `PaymentIsDisabled` also doesn't tell me if it is a...
The issue is in `src/CheckHtmlLinksCli.js` on line 116. When not specifying the option, `this.options.continueOnError` is `undefined`. ``` if (this.options.continueOnError === false) { ``` There are two easy fixes. Loosen the...
If you are hoping to use this in a script, I've found that you can leverage grep to get the right ``` check-html-links dist/ 2>&1 > /dev/null| ( ! grep...
I've got three questions. 1. Every name in the call target needs to be declared with an explicit type annotation. TypeScript knows the types involved. Why does the parameter need...