Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 455 Bytes

File metadata and controls

38 lines (28 loc) · 455 Bytes
description Cmdlet Singular Noun
ms.custom PSSA v1.21.0
ms.date 06/28/2023
ms.topic reference
title UseSingularNouns

UseSingularNouns

Severity Level: Warning

Description

PowerShell team best practices state cmdlets should use singular nouns and not plurals.

How

Change plurals to singular.

Example

Wrong

function Get-Files
{
    ...
}

Correct

function Get-File
{
    ...
}