-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathexternal_url_exclusions.json
More file actions
40 lines (36 loc) · 1.02 KB
/
external_url_exclusions.json
File metadata and controls
40 lines (36 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"tool": "External URL Validation",
"exclusions": [
{
"file": [
"*.md",
"*.rst",
"docs/*",
"*/doc/*",
"*/docs/*"
],
"_justification": "Documentation content may intentionally reference external URLs and is excluded from this source-code-focused validation."
},
{
"file": [
"scripts/*"
],
"_justification": "CI and tooling scripts are maintained separately from extension source content and are excluded to avoid self-flagging the validator configuration."
},
{
"file": [
"*/tests/recordings/*",
"*/tests/*.py",
"*/tests/*.json",
"*/tests/*.yaml",
"*/tests/*.yml",
"*/tests/*/recordings/*",
"*/tests/*/test_*.py",
"*/tests/*/*.json",
"*/tests/*/*.yaml",
"*/tests/*/*.yml"
],
"_justification": "Test sources, recordings, and test data can contain external sample URLs that are not shipped as runtime source dependencies."
}
]
}