Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 640 Bytes

File metadata and controls

36 lines (24 loc) · 640 Bytes
description Avoid global functions and aliases
ms.custom PSSA v1.21.0
ms.date 06/28/2023
ms.topic reference
title AvoidGlobalFunctions

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

Use other scope modifiers for functions.

Example

Wrong

function global:functionName {}

Correct

function functionName {}