├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── banner.png ├── extension.png └── logo.png ├── package-lock.json └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set default behavior to automatically normalize line endings. 2 | * text=auto 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "args": [ 13 | "--extensionDevelopmentPath=${workspaceFolder}" 14 | ] 15 | } 16 | ] 17 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [v0.0.6] 4 | 5 | - Added multiple new markdown extensions, as READMEs and other docs are essential to PowerShell development 6 | - Replaced Tyler's Pester Test extension with Justin's Pester Tests extension as Tyler's is not actively developed anymore. 7 | - Remove Bracket Pair Colorizer as it is now deprecated as the functionality is built into vscode 8 | - Added EditorConfig to help establish common code formats 9 | - Remove Github Projects as it is unstable 10 | 11 | ## [v0.0.5] 12 | 13 | - Removed some extensions a bit out of scope 14 | - Added YAML 15 | - Added Tyler Inline Values Extension 16 | 17 | ## [v0.0.1] 18 | 19 | - Initial release 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2021 Justin Grote @justinwgrote 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Logo](./images/banner.png)](https://marketplace.visualstudio.com/items?itemName=justin-grote.powershell-extension-pack) 2 | 3 | This is an extension pack that includes many useful extensions that assist in Powershell Development. 4 | 5 | It also includes useful extensions for working with GitHub and GitHub actions to encourage development there. 6 | 7 | # How to Install 8 | In vscode, click the extensions button and search for Powershell Extension Pack. You can choose to install the entire 9 | pack or just individual extensions as you like: 10 | ![Extension Install Example](./images/extension.png) 11 | 12 | You can also selectively disable extensions installed by the pack as you desire and enable them only for specific workspaces by first disabling them and then choosing Enable (Workspace) by right clicking the specific extension. 13 | 14 | # Contributing 15 | Pull request and extension issue suggestions welcome! I will considered however because this is opinionated I am the be-all-end-all as to what goes into the pack. I will always give you my best reason if I don't include something. Thanks! 16 | 17 | General Criteria for inclusion: 18 | 19 | * Supports Powershell Development both locally and with GitHub 20 | * Improves the editor to make Powershell development easier 21 | * Improves the editor to make documentation of Powershell easier 22 | * Does not impose a significant impact to vscode startup time 23 | -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/powershell-extension-pack/8cae39400924376755ebb44062f4762fe56c2f92/images/banner.png -------------------------------------------------------------------------------- /images/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/powershell-extension-pack/8cae39400924376755ebb44062f4762fe56c2f92/images/extension.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/powershell-extension-pack/8cae39400924376755ebb44062f4762fe56c2f92/images/logo.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "powershell-extension-pack", 3 | "version": "0.0.6", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "powershell-extension-pack", 9 | "version": "0.0.6", 10 | "engines": { 11 | "vscode": "^1.50.0" 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "powershell-extension-pack", 3 | "displayName": "Powershell Extension Pack", 4 | "description": "A collection of extensions to improve the Powershell development experience in Visual Studio Code", 5 | "version": "0.0.7", 6 | "publisher": "justin-grote", 7 | "engines": { 8 | "vscode": "^1.50.0" 9 | }, 10 | "categories": [ 11 | "Extension Packs" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/justingrote/powershell-extension-pack.git" 16 | }, 17 | "bugs": { 18 | "url": "https://github.com/justingrote/powershell-extension-pack/issues" 19 | }, 20 | "extensionPack": [ 21 | "anseki.vscode-color", 22 | "bierner.color-info", 23 | "bierner.markdown-checkbox", 24 | "bierner.markdown-mermaid", 25 | "bierner.markdown-preview-github-styles", 26 | "cschleiden.vscode-github-actions", 27 | "eamodio.gitlens", 28 | "EditorConfig.EditorConfig", 29 | "fabianlauer.vs-code-xml-format", 30 | "github.vscode-pull-request-github", 31 | "gruntfuggly.todo-tree", 32 | "johnpapa.vscode-peacock", 33 | "louiswt.regexp-preview", 34 | "mhutchie.git-graph", 35 | "ms-vscode-remote.remote-ssh-edit", 36 | "ms-vscode-remote.vscode-remote-extensionpack", 37 | "ms-vscode.powershell", 38 | "oderwat.indent-rainbow", 39 | "pod212.vscode-github-projects", 40 | "pspester.pester-test", 41 | "rangav.vscode-thunder-client", 42 | "redhat.vscode-yaml", 43 | "richie5um2.vscode-sort-json", 44 | "slevesque.vscode-zipexplorer", 45 | "tylerleonhardt.vscode-inline-values-powershell", 46 | "usernamehw.errorlens", 47 | "vscode-icons-team.vscode-icons", 48 | "vsls-contrib.codetour", 49 | "vsls-contrib.gistfs", 50 | "vsls-contrib.gitdoc", 51 | "wwm.better-align", 52 | "yzhang.markdown-all-in-one" 53 | ], 54 | "icon": "images/logo.png", 55 | "author": { 56 | "name": "Justin Grote", 57 | "url": "https://twitter.com/JustinWGrote" 58 | }, 59 | "keywords": [ 60 | "powershell", 61 | "pwsh" 62 | ] 63 | } 64 | --------------------------------------------------------------------------------