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_tools
windows_first
Summary
The documentation page is largely platform-neutral, but there is a notable Windows bias in the 'Integers' section, where PowerShell is mentioned as the example deployment tool that limits integer ranges. No equivalent mention is made of Linux or cross-platform tools (such as Azure CLI). This may give the impression that Windows/PowerShell is the primary or default environment for Bicep deployments.
Recommendations
  • When discussing deployment tools and their limitations (such as integer range), mention both PowerShell and Azure CLI, and clarify which platforms they run on.
  • Provide examples or notes for both Windows and Linux/macOS users where tool-specific behavior is relevant.
  • Avoid referencing only Windows tools or patterns unless they are truly unique to Windows; otherwise, present cross-platform or Linux alternatives alongside.
  • Consider adding a brief section or note about cross-platform support for Bicep and its tooling, including links to installation or usage instructions for Linux/macOS.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-12 00:58 #8 cancelled Clean Clean
2025-07-10 05:06 #7 processing Clean Clean

Flagged Code Snippets

param singleLineObject object = {name: 'test name', id: '123-abc', isCurrent: true, tier: 1}

param multiLineObject object = {
  name: 'test name'
  id: '123-abc'
  isCurrent: true
  tier: 1
}

param mixedObject object = {name: 'test name', id: '123-abc', isCurrent: true
    tier: 1}