Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
Summary
The documentation provides both Azure CLI (cross-platform) and Azure PowerShell (Windows-centric) examples for resource cleanup, but lists Azure CLI first. The pipeline YAML examples use 'ubuntu-latest' as the build agent, which is Linux-based, and all deployment steps use Azure CLI or Azure DevOps tasks, which are cross-platform. However, the inclusion of Azure PowerShell as a cleanup option introduces a mild Windows bias, as PowerShell is primarily used on Windows and is less common on Linux. There are no exclusive Windows tools or patterns, and Linux examples are present and prioritized.
Recommendations
- Clarify that Azure PowerShell is available cross-platform (Windows, Linux, macOS) to avoid implying Windows exclusivity.
- Provide explicit instructions or notes for running Azure PowerShell on Linux/macOS, if relevant.
- Ensure that all CLI and script examples use syntax compatible with both Windows and Linux shells (e.g., avoid backticks in Azure CLI examples, use line continuation appropriate for bash).
- Continue prioritizing cross-platform tools (Azure CLI) and Linux build agents in examples.
- If mentioning Windows-specific tools, always provide Linux/macOS equivalents side-by-side.
Create Pull Request