Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions .github/ISSUE_TEMPLATE/Bug_Report_PSScriptAnalyzer.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
---
name: Script analysis or formatting bug report 🚦🖌️
about: Script analysis and formatting are provided by PSScriptAnalyzer, whose issues are tracked in a different GitHub repository.
about: Script analysis and formatting are provided by PSScriptAnalyzer. Before submitting a script analysis or formatting issue, check to see whether the issue lies with PSScriptAnalyzer or with the VSCode PowerShell extension.

---

* Please submit script analysis and formatting issues to the
[PSScriptAnalyzer](https://github.com/powershell/PSScriptAnalyzer/issues) repo on GitHub.
<!--

Before submitting a formatting or script analysis issue,
please check the relevant PSScriptAnalyzer command in a PowerShell console *outside* of VSCode.

Script analysis issues:
```powershell
Invoke-ScriptAnalyzer -Path './path/to/your/script.ps1'
```

Formatting issues:
```powershell
Get-Content -Raw './path/to/your/script.ps1' | Invoke-Formatter
```

If the problem occurs in the console, please submit a new issue with [PSScriptAnalyzer](https://github.com/powershell/PSScriptAnalyzer/issues).

If it does not occur in the console, it may be a PowerShell extension bug -- please open an issue here.

(For information on using the PSScriptAnalyzer module, see [here](https://github.com/PowerShell/PSScriptAnalyzer#usage))

-->