You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This rule allows ignore patterns to match filenames starting with a period.
119
+
For example, if the `ignore` option contains `"http://example.com/**"` and the `dotInIgnore` option is set to `true`, paths containing filenames that start with `.` (like `"http://example.com/.hidden/index.html"`) will be ignored.
120
+
You can disable this behavior by setting `dotInIgnore` to `false`.
Following actions check links and upload the status to [code scanning](https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning).
text: 'should ignore URLs containing . in their path in the "ignore" option that glob formatted if option is enabled: https://example.com/.hidden/404.html shouldn\'t be checked.',
49
+
options: {
50
+
ignore: ["https://example.com/**"],
51
+
dotInIgnore: true
52
+
}
53
+
},
47
54
{
48
55
text: "should ignore relative URIs when `checkRelative` is false: [test](./a.md).",
0 commit comments