| description | Cmdlet Singular Noun |
|---|---|
| ms.custom | PSSA v1.21.0 |
| ms.date | 06/28/2023 |
| ms.topic | reference |
| title | UseSingularNouns |
Severity Level: Warning
PowerShell team best practices state cmdlets should use singular nouns and not plurals.
Change plurals to singular.
function Get-Files
{
...
}function Get-File
{
...
}