├── .github ├── scripts │ ├── Assert-Linting.ps1 │ ├── Assert-Tests.ps1 │ └── Publish-Module.ps1 └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── Initialize-Repo.ps1 ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── Requirements.psd1 ├── SECURITY.md ├── imgs ├── callstack.png └── checklist.png ├── src ├── core.ps1 ├── formatters.ps1 ├── interface.ps1 ├── module.psm1 └── types.ps1 └── test ├── Checkpoint-Output.ps1 ├── README.md ├── core.tests.ps1 ├── formatters.tests.ps1 ├── integration ├── Format-Checklist.Set.txt ├── Format-Checklist.Test.txt ├── Format-Checklist.TestSet.txt ├── Format-Table.Set.txt ├── Format-Table.Test.txt ├── Format-Table.TestSet.txt ├── Format-Verbose.Set.txt ├── Format-Verbose.Test.txt └── Format-Verbose.TestSet.txt └── interface.tests.ps1 /.github/scripts/Assert-Linting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.github/scripts/Assert-Linting.ps1 -------------------------------------------------------------------------------- /.github/scripts/Assert-Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.github/scripts/Assert-Tests.ps1 -------------------------------------------------------------------------------- /.github/scripts/Publish-Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.github/scripts/Publish-Module.ps1 -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Initialize-Repo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/Initialize-Repo.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/README.md -------------------------------------------------------------------------------- /Requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/Requirements.psd1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/SECURITY.md -------------------------------------------------------------------------------- /imgs/callstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/imgs/callstack.png -------------------------------------------------------------------------------- /imgs/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/imgs/checklist.png -------------------------------------------------------------------------------- /src/core.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/src/core.ps1 -------------------------------------------------------------------------------- /src/formatters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/src/formatters.ps1 -------------------------------------------------------------------------------- /src/interface.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/src/interface.ps1 -------------------------------------------------------------------------------- /src/module.psm1: -------------------------------------------------------------------------------- 1 | 2 | ."$PSScriptRoot\interface.ps1" 3 | -------------------------------------------------------------------------------- /src/types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/src/types.ps1 -------------------------------------------------------------------------------- /test/Checkpoint-Output.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/Checkpoint-Output.ps1 -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/README.md -------------------------------------------------------------------------------- /test/core.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/core.tests.ps1 -------------------------------------------------------------------------------- /test/formatters.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/formatters.tests.ps1 -------------------------------------------------------------------------------- /test/integration/Format-Checklist.Set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Checklist.Set.txt -------------------------------------------------------------------------------- /test/integration/Format-Checklist.Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Checklist.Test.txt -------------------------------------------------------------------------------- /test/integration/Format-Checklist.TestSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Checklist.TestSet.txt -------------------------------------------------------------------------------- /test/integration/Format-Table.Set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Table.Set.txt -------------------------------------------------------------------------------- /test/integration/Format-Table.Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Table.Test.txt -------------------------------------------------------------------------------- /test/integration/Format-Table.TestSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Table.TestSet.txt -------------------------------------------------------------------------------- /test/integration/Format-Verbose.Set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Verbose.Set.txt -------------------------------------------------------------------------------- /test/integration/Format-Verbose.Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Verbose.Test.txt -------------------------------------------------------------------------------- /test/integration/Format-Verbose.TestSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/integration/Format-Verbose.TestSet.txt -------------------------------------------------------------------------------- /test/interface.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Requirements/HEAD/test/interface.tests.ps1 --------------------------------------------------------------------------------