Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 500 Bytes

AvoidGlobalFunctions.md

File metadata and controls

22 lines (16 loc) · 500 Bytes

#AvoidGlobalFunctions Severity Level: Warning

##Description Globally scoped functions override existing functions within the sessions with matching names. This name collision can cause difficult to debug issues for consumers of modules.

To understand more about scoping, see Get-Help about_Scopes.

##How to Fix Use other scope modifiers for functions.

##Example ###Wrong:

function global:functionName {}

###Correct:

function functionName {}