Sad Tux - Windows bias detected
This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Detected Bias Types
windows_first
Summary
The documentation uses Azure CLI examples throughout, which are generally cross-platform. However, there is a subtle Windows bias in the Bicep deployment section: the CLI example for deploying the Bicep file uses PowerShell-style backticks (`) for line continuation, which is specific to Windows/PowerShell. No equivalent Bash (Linux/macOS) example is provided. Additionally, references to 'cmdlets from the Az.App module in PowerShell' are mentioned before CLI commands, and there is no explicit mention of Linux shell usage or examples.
Recommendations
  • For all CLI command examples, provide both Bash (\) and PowerShell (`) line continuation variants, or use single-line commands to avoid platform-specific syntax.
  • When mentioning PowerShell modules or cmdlets, also mention Bash/Azure CLI equivalents, and clarify which environments each applies to.
  • Explicitly state that all Azure CLI commands work on Linux, macOS, and Windows, and provide any necessary notes for cross-platform usage.
  • Where environment variables are set, clarify syntax differences (e.g., $VAR for Bash, $env:VAR for PowerShell) if relevant.
  • Consider adding a 'Platform differences' note or section to highlight any OS-specific considerations.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2026-01-17 00:00 #262 completed Clean Clean
2026-01-14 00:00 #250 in_progress Clean Clean
2026-01-13 00:00 #246 completed Clean Clean
2026-01-11 00:00 #240 completed Clean Clean
2026-01-10 00:00 #237 completed Clean Clean
2026-01-09 00:34 #234 completed Clean Clean
2026-01-08 00:53 #231 completed Clean Clean
2026-01-06 18:15 #225 cancelled Clean Clean
2025-08-17 00:01 #83 cancelled Clean Clean
2025-07-13 21:37 #48 completed Clean Clean
2025-07-09 13:09 #3 cancelled Clean Clean
2025-07-08 04:23 #2 cancelled Biased Biased

Flagged Code Snippets

    az deployment group create `
      --name $ROUTE_CONFIG_NAME `
      --resource-group $RESOURCE_GROUP `
      --template-file routing.bicep