You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Function parameters in this module use snake_case naming, which flies in the face of Microsoft's best practices of using PascalCase naming. This was a decision I made in the early days of development when I wasn't familiar with PowerShell, but it has the unfortunate side-effect of making use of the module more difficult for people proficient with PowerShell who would expect an idiomatic experience.
Describe the solution you'd like
Switching to using PascalCase for function parameters by default, with parameter aliases for their existing snake_case alternatives would provide a more idiomatic experience, while also providing backward compatibility with existing scripts.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Function parameters in this module use
snake_case
naming, which flies in the face of Microsoft's best practices of usingPascalCase
naming. This was a decision I made in the early days of development when I wasn't familiar with PowerShell, but it has the unfortunate side-effect of making use of the module more difficult for people proficient with PowerShell who would expect an idiomatic experience.Describe the solution you'd like
Switching to using
PascalCase
for function parameters by default, with parameter aliases for their existingsnake_case
alternatives would provide a more idiomatic experience, while also providing backward compatibility with existing scripts.The text was updated successfully, but these errors were encountered: