Skip to content

Instantly share code, notes, and snippets.

@bergmeister
Last active December 3, 2019 15:32
Show Gist options
  • Save bergmeister/2a5603f5a139a46a0c5430bdbf985dc3 to your computer and use it in GitHub Desktop.
Save bergmeister/2a5603f5a139a46a0c5430bdbf985dc3 to your computer and use it in GitHub Desktop.
Autof-Format PowerShell scripts
Get-ChildItem -Filter *.ps1 -Recurse | ForEach-Object { Set-Content $_.FullName (Invoke-Formatter (Get-Content $_.FullName -Raw)) -NoNewline }
Get-ChildItem -Filter *.psm1 -Recurse | ForEach-Object { Set-Content $_.FullName (Invoke-Formatter (Get-Content $_.FullName -Raw)) -NoNewline }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment