-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathPowerShell-Beautifier.psd1
22 lines (22 loc) · 1.36 KB
/
PowerShell-Beautifier.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@{ ModuleVersion = '1.2.5'
Author = 'Dan Ward'
CompanyName = 'DTWConsulting.com'
Copyright = 'Copyright 2012-2017 Dan Ward. All rights reserved.'
Description = 'PowerShell beautifier / code cleaner / pretty printer. For more info see: https://github.com/DTW-DanWard/PowerShell-Beautifier'
GUID = '{222A4EF8-9A04-4240-AE0C-18A0CDED5248}'
NestedModules = 'src/DTW.PS.FileSystem.Encoding.psm1',
'src/DTW.PS.Beautifier.PopulateValidNames.psm1',
'src/DTW.PS.Beautifier.Main.psm1'
PrivateData = @{
ValidCommandNames = $null;
ValidCommandParameterNames = $null;
ValidAttributeNames = $null;
ValidMemberNames = $null;
ValidVariableNames = $null;
PSData = @{
Tags = @('Beautifier','WhiteSpace','PrettyPrinter','Tabs','Spaces','Format','Core')
LicenseUri = 'https://github.com/DTW-DanWard/PowerShell-Beautifier/blob/master/LICENSE'
ProjectUri = 'https://github.com/DTW-DanWard/PowerShell-Beautifier'
}
}
}