Skip to content

Commit 8f68eaf

Browse files
TravisEz13adityapatwardhan
authored andcommitted
markdownlint security updates (PowerShell#13730)
* security updates * exclude markdown test changes from product CI is future
1 parent 43fba38 commit 8f68eaf

File tree

5 files changed

+2389
-9
lines changed

5 files changed

+2389
-9
lines changed

.vsts-ci/linux.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ pr:
2424
include:
2525
- '*'
2626
exclude:
27+
- test/common/markdown/*
2728
- tools/releaseBuild/*
2829
- tools/releaseBuild/azureDevOps/templates/*
29-
- /.vsts-ci/misc-analysis.yml
30-
- /.github/ISSUE_TEMPLATE/*
31-
- /.dependabot/config.yml
30+
- .vsts-ci/misc-analysis.yml
31+
- .github/ISSUE_TEMPLATE/*
32+
- .dependabot/config.yml
3233

3334
variables:
3435
DOTNET_CLI_TELEMETRY_OPTOUT: 1

.vsts-ci/mac.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ pr:
2525
include:
2626
- '*'
2727
exclude:
28-
- /.vsts-ci/misc-analysis.yml
29-
- /.github/ISSUE_TEMPLATE/*
30-
- /.dependabot/config.yml
28+
- test/common/markdown/*
29+
- .vsts-ci/misc-analysis.yml
30+
- .github/ISSUE_TEMPLATE/*
31+
- .dependabot/config.yml
3132
- tools/releaseBuild/*
3233
- tools/releaseBuild/azureDevOps/templates/*
3334

.vsts-ci/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ pr:
2424
include:
2525
- '*'
2626
exclude:
27-
- /.vsts-ci/misc-analysis.yml
28-
- /.github/ISSUE_TEMPLATE/*
29-
- /.dependabot/config.yml
27+
- .vsts-ci/misc-analysis.yml
28+
- .github/ISSUE_TEMPLATE/*
29+
- .dependabot/config.yml
3030
- tools/releaseBuild/*
3131
- tools/releaseBuild/azureDevOps/templates/*
32+
- test/common/markdown/*
3233

3334
variables:
3435
GIT_CONFIG_PARAMETERS: "'core.autocrlf=false'"

test/common/markdown/package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "powershell.common.markdown.tests",
3+
"private": true,
4+
"version": "1.0.0",
5+
"description": "The PowerShell Common Markdown Tests.",
6+
"main": "gulpfile.js",
7+
"dependencies": {
8+
"gulp": "^4.0.2",
9+
"markdownlint": "^0.21.0",
10+
"through2": "^4.0.2",
11+
"yargs-parser": "13.1.2"
12+
},
13+
"devDependencies": {
14+
"gulp-concat": "^2.6.1",
15+
"gulp-debug": "^4.0.0"
16+
},
17+
"repository": {
18+
"type": "git",
19+
"url": "git+https://github.com/PowerShell/PowerShell.git"
20+
},
21+
"author": "Microsoft Corporation",
22+
"license": "MIT",
23+
"bugs": {
24+
"url": "https://github.com/PowerShell/PowerShell/issues"
25+
},
26+
"homepage": "https://github.com/PowerShell/PowerShell#readme"
27+
}

0 commit comments

Comments
 (0)