mirror of
https://github.com/Stone-Red-Code/naming-convention.git
synced 2026-09-04 00:56:16 +02:00
857 B
857 B
Powershell name convention
Powershell object name
| Object | Verb-Noun | Notation | Length | Plural | Prefix | Suffix | Example |
|---|---|---|---|---|---|---|---|
| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule |
| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord |
| Parameter | No | PascalCase | 30 | No | No | No | MyParameter |