Severity Level: Warning
PowerShell team best practices state cmdlets should use singular nouns and not plurals.
NOTE This rule is not available in PowerShell Core due to the PluralizationService API that the rule uses internally.
Change plurals to singular.
function Get-Files
{
...
}
function Get-File
{
...
}