Hi, my script is invoking `linkinator.config.json` and works well, except that my parameter to skip all links that don't start with http is ignored. My full config: ```json { "concurrency": 100, "skip": [ "^(?!http)", "recomedicales.fr", "doi.org", "journals.sagepub.com", "acpjournals.org", "github.com" ], "format": "csv", "verbosity": "error", "markdown": false, "retry": true, "retryErrors": true, "retryErrorsCount": 3, "retryErrorsJitter": 10 } ``` Thanks a lot.