├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── installation-issue.md └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── install.ps1 └── test ├── Linter.Tests.ps1 ├── bin ├── init.ps1 └── test.ps1 └── install.Tests.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/installation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/.github/ISSUE_TEMPLATE/installation-issue.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | ._* 3 | TestResults.xml 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/README.md -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/install.ps1 -------------------------------------------------------------------------------- /test/Linter.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/test/Linter.Tests.ps1 -------------------------------------------------------------------------------- /test/bin/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/test/bin/init.ps1 -------------------------------------------------------------------------------- /test/bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/test/bin/test.ps1 -------------------------------------------------------------------------------- /test/install.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Install/HEAD/test/install.Tests.ps1 --------------------------------------------------------------------------------