Pattern: Use of plural noun for Cmdlet
Issue: -
Cmdlets should use singular nouns and not plurals.
Change plurals to singular.
Example of incorrect code:
function Get-Files
{
...
}
Example of correct code:
function Get-File
{
...
}
Pattern: Use of plural noun for Cmdlet
Issue: -
Cmdlets should use singular nouns and not plurals.
Change plurals to singular.
Example of incorrect code:
function Get-Files
{
...
}
Example of correct code:
function Get-File
{
...
}