From 22a3e838c8a02bd30721c70df2f6b1bdf85049da Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 15 Jul 2022 10:05:35 +0200 Subject: [PATCH] fix lint issue --- src/PSCredentialStore.psd1 | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/PSCredentialStore.psd1 b/src/PSCredentialStore.psd1 index c2b482b..462ee86 100644 --- a/src/PSCredentialStore.psd1 +++ b/src/PSCredentialStore.psd1 @@ -33,10 +33,12 @@ # Minimum version of the PowerShell host required by this module # PowerShellHostVersion = '' - # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the + # PowerShell Desktop edition only. # DotNetFrameworkVersion = '' - # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for + # the PowerShell Desktop edition only. # CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module @@ -63,7 +65,8 @@ # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess # NestedModules = @() - # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, + # use an empty array if there are no functions to export. FunctionsToExport = @( # Certificate 'Get-CSCertificate', @@ -92,13 +95,15 @@ 'Test-CredentialStore' ) - # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, + # use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = '*' - # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, + # use an empty array if there are no aliases to export. AliasesToExport = @() # DSC resources to export from this module @@ -110,7 +115,8 @@ # List of all files packaged with this module # FileList = @() - # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData + # hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ @@ -125,7 +131,7 @@ ProjectUri = 'https://gitea.ocram85.com/OCram85/PSCredentialStore' # A URL to an icon representing this module. - IconUri = 'https://gitea.ocram85.com/OCram85/PSCredentialStore/raw/branch/master/assets/logo256.png' + IconUri = 'https://gitea.ocram85.com/OCram85/PSCredentialStore/raw/branch/master/assets/logo256.png' # ReleaseNotes of this module ReleaseNotes = 'See https://gitea.ocram85.com/OCram85/PSCredentialStore/releases page for details.' @@ -146,7 +152,8 @@ # HelpInfo URI of this module HelpInfoURI = 'https://gitea.ocram85.com/OCram85/PSCredentialStore' - # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # Default prefix for commands exported from this module. Override the default prefix + # using Import-Module -Prefix. # DefaultCommandPrefix = '' }