├── .azure-pipelines ├── azure-pipelines.yaml ├── jobs │ └── release.yaml └── loopback-pipeline.yaml ├── .eslintignore ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── analyze.yaml │ ├── build.yaml │ ├── dependencies.yaml │ └── stale.yaml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── features.md ├── tasks.md └── upgrade-notes.md ├── extension.config.cjs ├── extension.md ├── images └── icon128.png ├── modules.json ├── package.json ├── pipeline.build.ps1 ├── plugins └── extras.js ├── ps-project.yaml ├── ps-rule.yaml ├── scripts ├── dependencies.psm1 └── pipeline-deps.ps1 ├── tasks ├── ps-rule-assertV2 │ ├── powershell.ps1 │ ├── powershell.ts │ └── task.json └── ps-rule-installV2 │ ├── powershell.ps1 │ ├── powershell.ts │ └── task.json ├── tests └── Extension.Tests.ps1 └── tsconfig.json /.azure-pipelines/azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.azure-pipelines/azure-pipelines.yaml -------------------------------------------------------------------------------- /.azure-pipelines/jobs/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.azure-pipelines/jobs/release.yaml -------------------------------------------------------------------------------- /.azure-pipelines/loopback-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.azure-pipelines/loopback-pipeline.yaml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/analyze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/workflows/analyze.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/workflows/dependencies.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/docs/tasks.md -------------------------------------------------------------------------------- /docs/upgrade-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/docs/upgrade-notes.md -------------------------------------------------------------------------------- /extension.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/extension.config.cjs -------------------------------------------------------------------------------- /extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/extension.md -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/images/icon128.png -------------------------------------------------------------------------------- /modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/modules.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/package.json -------------------------------------------------------------------------------- /pipeline.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/pipeline.build.ps1 -------------------------------------------------------------------------------- /plugins/extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/plugins/extras.js -------------------------------------------------------------------------------- /ps-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/ps-project.yaml -------------------------------------------------------------------------------- /ps-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/ps-rule.yaml -------------------------------------------------------------------------------- /scripts/dependencies.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/scripts/dependencies.psm1 -------------------------------------------------------------------------------- /scripts/pipeline-deps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/scripts/pipeline-deps.ps1 -------------------------------------------------------------------------------- /tasks/ps-rule-assertV2/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tasks/ps-rule-assertV2/powershell.ps1 -------------------------------------------------------------------------------- /tasks/ps-rule-assertV2/powershell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tasks/ps-rule-assertV2/powershell.ts -------------------------------------------------------------------------------- /tasks/ps-rule-assertV2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tasks/ps-rule-assertV2/task.json -------------------------------------------------------------------------------- /tasks/ps-rule-installV2/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tasks/ps-rule-installV2/powershell.ps1 -------------------------------------------------------------------------------- /tasks/ps-rule-installV2/powershell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tasks/ps-rule-installV2/powershell.ts -------------------------------------------------------------------------------- /tasks/ps-rule-installV2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tasks/ps-rule-installV2/task.json -------------------------------------------------------------------------------- /tests/Extension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tests/Extension.Tests.ps1 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSRule-pipelines/HEAD/tsconfig.json --------------------------------------------------------------------------------