├── .build.ps1 ├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── Build.ps1 ├── FormatPowershellCode.psd1 ├── FormatPowershellCode.psm1 ├── Install.ps1 ├── LICENSE.md ├── README.md ├── en-US └── about_FormatPowershellCode.help.txt ├── function-status-table.csv ├── release ├── 1.4.0 │ ├── FormatPowerShellCode.psm1 │ ├── FormatPowershellCode.psd1 │ ├── docs │ │ ├── Format-ScriptCondenseEnclosures.md │ │ ├── Format-ScriptExpandFunctionBlocks.md │ │ ├── Format-ScriptExpandNamedBlocks.md │ │ ├── Format-ScriptExpandParameterBlocks.md │ │ ├── Format-ScriptExpandStatementBlocks.md │ │ ├── Format-ScriptExpandTypeAccelerators.md │ │ ├── Format-ScriptFormatCodeIndentation.md │ │ ├── Format-ScriptFormatCommandNames.md │ │ ├── Format-ScriptFormatTypeNames.md │ │ ├── Format-ScriptPadExpressions.md │ │ ├── Format-ScriptPadOperators.md │ │ ├── Format-ScriptReduceLineLength.md │ │ ├── Format-ScriptRemoveStatementSeparators.md │ │ ├── Format-ScriptRemoveSuperfluousSpaces.md │ │ ├── Format-ScriptReplaceHereStrings.md │ │ ├── Format-ScriptReplaceInvalidCharacters.md │ │ ├── Format-ScriptTestCodeBlock.md │ │ └── FormatPowershellCode.md │ └── en-US │ │ ├── FormatPowerShellCode-help.xml │ │ ├── FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml │ │ ├── FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab │ │ └── about_FormatPowershellCode.help.txt ├── 1.4.1 │ ├── FormatPowerShellCode.psm1 │ ├── FormatPowershellCode.psd1 │ ├── docs │ │ ├── Format-ScriptCondenseEnclosures.md │ │ ├── Format-ScriptExpandFunctionBlocks.md │ │ ├── Format-ScriptExpandNamedBlocks.md │ │ ├── Format-ScriptExpandParameterBlocks.md │ │ ├── Format-ScriptExpandStatementBlocks.md │ │ ├── Format-ScriptExpandTypeAccelerators.md │ │ ├── Format-ScriptFormatCodeIndentation.md │ │ ├── Format-ScriptFormatCommandNames.md │ │ ├── Format-ScriptFormatTypeNames.md │ │ ├── Format-ScriptPadExpressions.md │ │ ├── Format-ScriptPadOperators.md │ │ ├── Format-ScriptReduceLineLength.md │ │ ├── Format-ScriptRemoveStatementSeparators.md │ │ ├── Format-ScriptRemoveSuperfluousSpaces.md │ │ ├── Format-ScriptReplaceHereStrings.md │ │ ├── Format-ScriptReplaceInvalidCharacters.md │ │ ├── Format-ScriptTestCodeBlock.md │ │ └── FormatPowershellCode.md │ └── en-US │ │ ├── FormatPowerShellCode-help.xml │ │ ├── FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml │ │ ├── FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab │ │ └── about_FormatPowershellCode.help.txt ├── FormatPowershellCode-1.4.0.zip ├── FormatPowershellCode-1.4.1.zip ├── FormatPowershellCode-current.zip └── FormatPowershellCode │ ├── FormatPowerShellCode.psm1 │ ├── FormatPowershellCode.psd1 │ ├── docs │ ├── Format-ScriptCondenseEnclosures.md │ ├── Format-ScriptExpandFunctionBlocks.md │ ├── Format-ScriptExpandNamedBlocks.md │ ├── Format-ScriptExpandParameterBlocks.md │ ├── Format-ScriptExpandStatementBlocks.md │ ├── Format-ScriptExpandTypeAccelerators.md │ ├── Format-ScriptFormatCodeIndentation.md │ ├── Format-ScriptFormatCommandNames.md │ ├── Format-ScriptFormatTypeNames.md │ ├── Format-ScriptPadExpressions.md │ ├── Format-ScriptPadOperators.md │ ├── Format-ScriptReduceLineLength.md │ ├── Format-ScriptRemoveStatementSeparators.md │ ├── Format-ScriptRemoveSuperfluousSpaces.md │ ├── Format-ScriptReplaceHereStrings.md │ ├── Format-ScriptReplaceInvalidCharacters.md │ ├── Format-ScriptTestCodeBlock.md │ └── FormatPowershellCode.md │ └── en-US │ ├── FormatPowerShellCode-help.xml │ ├── FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml │ ├── FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab │ └── about_FormatPowershellCode.help.txt ├── src ├── depreciated │ ├── Format-ScriptConvertKeywordsAndOperatorsToLower.ps1 │ ├── Format-ScriptExpandAliases.ps1 │ └── Format-ScriptRemoveStatementSeparatorsOld.ps1 ├── other │ └── 1_globals.ps1 ├── private │ ├── Format-ScriptGetKindLines.ps1 │ ├── Format-ScriptGetKindLocations.ps1 │ ├── FormatScript-Definitions.ps1 │ ├── Get-BreakableTokens.ps1 │ ├── Get-CallerPreference.ps1 │ ├── Get-NewToken.ps1 │ ├── Get-ParentASTTypes.ps1 │ ├── Get-TokenKindLocations.ps1 │ ├── Get-TokensBetweenLines.ps1 │ ├── Get-TokensOnLineNumber.ps1 │ └── Update-EscapableCharacters.ps1 ├── public │ ├── Format-ScriptCondenseEnclosures.ps1 │ ├── Format-ScriptExpandFunctionBlocks.ps1 │ ├── Format-ScriptExpandNamedBlocks.ps1 │ ├── Format-ScriptExpandParameterBlocks.ps1 │ ├── Format-ScriptExpandStatementBlocks.ps1 │ ├── Format-ScriptExpandTypeAccelerators.ps1 │ ├── Format-ScriptFormatCodeIndentation.ps1 │ ├── Format-ScriptFormatCommandNames.ps1 │ ├── Format-ScriptFormatTypeNames.ps1 │ ├── Format-ScriptPadExpressions.ps1 │ ├── Format-ScriptPadOperators.ps1 │ ├── Format-ScriptReduceLineLength.ps1 │ ├── Format-ScriptRemoveStatementSeparators.ps1 │ ├── Format-ScriptRemoveSuperfluousSpaces.ps1 │ ├── Format-ScriptReplaceHereStrings.ps1 │ ├── Format-ScriptReplaceInvalidCharacters.ps1 │ └── Format-ScriptTestCodeBlock.ps1 └── working │ ├── Expand-Aliases.ps1 │ ├── Format-ScriptReplaceTabCharacters.ps1 │ ├── Format-ScriptTemplateFunction.ps1 │ └── Get-FunctionParameters.ps1 ├── test └── Pester │ └── Data │ ├── example-transform1.ps1 │ ├── newtest.ps1 │ ├── testcase-assignmentop.ps1 │ ├── testcase-codeblockexpansion.ps1 │ ├── testcase-condenseenclosures.ps1 │ ├── testcase-lotsofvariables.ps1 │ ├── testcase-lotsofvariables2.ps1 │ ├── testcase-multipleembeddedparamblocks.ps1 │ ├── testcase-strings.ps1 │ └── testcase-verylargefunction.ps1 └── version.txt /.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/.build.ps1 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/Build.ps1 -------------------------------------------------------------------------------- /FormatPowershellCode.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/FormatPowershellCode.psd1 -------------------------------------------------------------------------------- /FormatPowershellCode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/FormatPowershellCode.psm1 -------------------------------------------------------------------------------- /Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/Install.ps1 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/README.md -------------------------------------------------------------------------------- /en-US/about_FormatPowershellCode.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/en-US/about_FormatPowershellCode.help.txt -------------------------------------------------------------------------------- /function-status-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/function-status-table.csv -------------------------------------------------------------------------------- /release/1.4.0/FormatPowerShellCode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/FormatPowerShellCode.psm1 -------------------------------------------------------------------------------- /release/1.4.0/FormatPowershellCode.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/FormatPowershellCode.psd1 -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptCondenseEnclosures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptCondenseEnclosures.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptExpandFunctionBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptExpandFunctionBlocks.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptExpandNamedBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptExpandNamedBlocks.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptExpandParameterBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptExpandParameterBlocks.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptExpandStatementBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptExpandStatementBlocks.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptExpandTypeAccelerators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptExpandTypeAccelerators.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptFormatCodeIndentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptFormatCodeIndentation.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptFormatCommandNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptFormatCommandNames.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptFormatTypeNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptFormatTypeNames.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptPadExpressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptPadExpressions.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptPadOperators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptPadOperators.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptReduceLineLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptReduceLineLength.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptRemoveStatementSeparators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptRemoveStatementSeparators.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptRemoveSuperfluousSpaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptRemoveSuperfluousSpaces.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptReplaceHereStrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptReplaceHereStrings.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptReplaceInvalidCharacters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptReplaceInvalidCharacters.md -------------------------------------------------------------------------------- /release/1.4.0/docs/Format-ScriptTestCodeBlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/Format-ScriptTestCodeBlock.md -------------------------------------------------------------------------------- /release/1.4.0/docs/FormatPowershellCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/docs/FormatPowershellCode.md -------------------------------------------------------------------------------- /release/1.4.0/en-US/FormatPowerShellCode-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/en-US/FormatPowerShellCode-help.xml -------------------------------------------------------------------------------- /release/1.4.0/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml -------------------------------------------------------------------------------- /release/1.4.0/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab -------------------------------------------------------------------------------- /release/1.4.0/en-US/about_FormatPowershellCode.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.0/en-US/about_FormatPowershellCode.help.txt -------------------------------------------------------------------------------- /release/1.4.1/FormatPowerShellCode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/FormatPowerShellCode.psm1 -------------------------------------------------------------------------------- /release/1.4.1/FormatPowershellCode.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/FormatPowershellCode.psd1 -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptCondenseEnclosures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptCondenseEnclosures.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptExpandFunctionBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptExpandFunctionBlocks.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptExpandNamedBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptExpandNamedBlocks.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptExpandParameterBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptExpandParameterBlocks.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptExpandStatementBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptExpandStatementBlocks.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptExpandTypeAccelerators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptExpandTypeAccelerators.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptFormatCodeIndentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptFormatCodeIndentation.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptFormatCommandNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptFormatCommandNames.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptFormatTypeNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptFormatTypeNames.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptPadExpressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptPadExpressions.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptPadOperators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptPadOperators.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptReduceLineLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptReduceLineLength.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptRemoveStatementSeparators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptRemoveStatementSeparators.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptRemoveSuperfluousSpaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptRemoveSuperfluousSpaces.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptReplaceHereStrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptReplaceHereStrings.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptReplaceInvalidCharacters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptReplaceInvalidCharacters.md -------------------------------------------------------------------------------- /release/1.4.1/docs/Format-ScriptTestCodeBlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/Format-ScriptTestCodeBlock.md -------------------------------------------------------------------------------- /release/1.4.1/docs/FormatPowershellCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/docs/FormatPowershellCode.md -------------------------------------------------------------------------------- /release/1.4.1/en-US/FormatPowerShellCode-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/en-US/FormatPowerShellCode-help.xml -------------------------------------------------------------------------------- /release/1.4.1/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml -------------------------------------------------------------------------------- /release/1.4.1/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab -------------------------------------------------------------------------------- /release/1.4.1/en-US/about_FormatPowershellCode.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/1.4.1/en-US/about_FormatPowershellCode.help.txt -------------------------------------------------------------------------------- /release/FormatPowershellCode-1.4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode-1.4.0.zip -------------------------------------------------------------------------------- /release/FormatPowershellCode-1.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode-1.4.1.zip -------------------------------------------------------------------------------- /release/FormatPowershellCode-current.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode-current.zip -------------------------------------------------------------------------------- /release/FormatPowershellCode/FormatPowerShellCode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/FormatPowerShellCode.psm1 -------------------------------------------------------------------------------- /release/FormatPowershellCode/FormatPowershellCode.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/FormatPowershellCode.psd1 -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptCondenseEnclosures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptCondenseEnclosures.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptExpandFunctionBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptExpandFunctionBlocks.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptExpandNamedBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptExpandNamedBlocks.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptExpandParameterBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptExpandParameterBlocks.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptExpandStatementBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptExpandStatementBlocks.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptExpandTypeAccelerators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptExpandTypeAccelerators.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptFormatCodeIndentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptFormatCodeIndentation.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptFormatCommandNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptFormatCommandNames.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptFormatTypeNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptFormatTypeNames.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptPadExpressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptPadExpressions.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptPadOperators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptPadOperators.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptReduceLineLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptReduceLineLength.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptRemoveStatementSeparators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptRemoveStatementSeparators.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptRemoveSuperfluousSpaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptRemoveSuperfluousSpaces.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptReplaceHereStrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptReplaceHereStrings.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptReplaceInvalidCharacters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptReplaceInvalidCharacters.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/Format-ScriptTestCodeBlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/Format-ScriptTestCodeBlock.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/docs/FormatPowershellCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/docs/FormatPowershellCode.md -------------------------------------------------------------------------------- /release/FormatPowershellCode/en-US/FormatPowerShellCode-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/en-US/FormatPowerShellCode-help.xml -------------------------------------------------------------------------------- /release/FormatPowershellCode/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_HelpInfo.xml -------------------------------------------------------------------------------- /release/FormatPowershellCode/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/en-US/FormatPowershellCode_dcfbce3c-18be-4775-b98d-4431d4fb9e08_en-US_helpcontent.cab -------------------------------------------------------------------------------- /release/FormatPowershellCode/en-US/about_FormatPowershellCode.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/release/FormatPowershellCode/en-US/about_FormatPowershellCode.help.txt -------------------------------------------------------------------------------- /src/depreciated/Format-ScriptConvertKeywordsAndOperatorsToLower.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/depreciated/Format-ScriptConvertKeywordsAndOperatorsToLower.ps1 -------------------------------------------------------------------------------- /src/depreciated/Format-ScriptExpandAliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/depreciated/Format-ScriptExpandAliases.ps1 -------------------------------------------------------------------------------- /src/depreciated/Format-ScriptRemoveStatementSeparatorsOld.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/depreciated/Format-ScriptRemoveStatementSeparatorsOld.ps1 -------------------------------------------------------------------------------- /src/other/1_globals.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/other/1_globals.ps1 -------------------------------------------------------------------------------- /src/private/Format-ScriptGetKindLines.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Format-ScriptGetKindLines.ps1 -------------------------------------------------------------------------------- /src/private/Format-ScriptGetKindLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Format-ScriptGetKindLocations.ps1 -------------------------------------------------------------------------------- /src/private/FormatScript-Definitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/FormatScript-Definitions.ps1 -------------------------------------------------------------------------------- /src/private/Get-BreakableTokens.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-BreakableTokens.ps1 -------------------------------------------------------------------------------- /src/private/Get-CallerPreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-CallerPreference.ps1 -------------------------------------------------------------------------------- /src/private/Get-NewToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-NewToken.ps1 -------------------------------------------------------------------------------- /src/private/Get-ParentASTTypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-ParentASTTypes.ps1 -------------------------------------------------------------------------------- /src/private/Get-TokenKindLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-TokenKindLocations.ps1 -------------------------------------------------------------------------------- /src/private/Get-TokensBetweenLines.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-TokensBetweenLines.ps1 -------------------------------------------------------------------------------- /src/private/Get-TokensOnLineNumber.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Get-TokensOnLineNumber.ps1 -------------------------------------------------------------------------------- /src/private/Update-EscapableCharacters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/private/Update-EscapableCharacters.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptCondenseEnclosures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptCondenseEnclosures.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptExpandFunctionBlocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptExpandFunctionBlocks.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptExpandNamedBlocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptExpandNamedBlocks.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptExpandParameterBlocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptExpandParameterBlocks.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptExpandStatementBlocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptExpandStatementBlocks.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptExpandTypeAccelerators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptExpandTypeAccelerators.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptFormatCodeIndentation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptFormatCodeIndentation.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptFormatCommandNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptFormatCommandNames.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptFormatTypeNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptFormatTypeNames.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptPadExpressions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptPadExpressions.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptPadOperators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptPadOperators.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptReduceLineLength.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptReduceLineLength.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptRemoveStatementSeparators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptRemoveStatementSeparators.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptRemoveSuperfluousSpaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptRemoveSuperfluousSpaces.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptReplaceHereStrings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptReplaceHereStrings.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptReplaceInvalidCharacters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptReplaceInvalidCharacters.ps1 -------------------------------------------------------------------------------- /src/public/Format-ScriptTestCodeBlock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/public/Format-ScriptTestCodeBlock.ps1 -------------------------------------------------------------------------------- /src/working/Expand-Aliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/working/Expand-Aliases.ps1 -------------------------------------------------------------------------------- /src/working/Format-ScriptReplaceTabCharacters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/working/Format-ScriptReplaceTabCharacters.ps1 -------------------------------------------------------------------------------- /src/working/Format-ScriptTemplateFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/working/Format-ScriptTemplateFunction.ps1 -------------------------------------------------------------------------------- /src/working/Get-FunctionParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/src/working/Get-FunctionParameters.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/example-transform1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/example-transform1.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/newtest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/newtest.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-assignmentop.ps1: -------------------------------------------------------------------------------- 1 | $a=$b=$c=2 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-codeblockexpansion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-codeblockexpansion.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-condenseenclosures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-condenseenclosures.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-lotsofvariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-lotsofvariables.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-lotsofvariables2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-lotsofvariables2.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-multipleembeddedparamblocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-multipleembeddedparamblocks.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-strings.ps1 -------------------------------------------------------------------------------- /test/Pester/Data/testcase-verylargefunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloeber/FormatPowershellCode/HEAD/test/Pester/Data/testcase-verylargefunction.ps1 -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.4.1 --------------------------------------------------------------------------------