Error when loading @trivago/prettier-plugin-organize-imports
#112
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Issue Assessment | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| need-more-info: | |
| if: github.event.label.name == 'need-more-info' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Add comment | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| body: `## Additional Information Needed | |
| This issue is missing information we need to investigate the problem. | |
| ### Please provide: | |
| - [ ] **Reproduction repository** — A public GitHub repo that demonstrates the issue | |
| - [ ] **Prettier extension logs** — Click "Prettier" in the status bar and copy the output | |
| - [ ] **Steps to reproduce** — Clear steps we can follow to see the issue | |
| ### Why this matters | |
| Most issues are specific to your project's configuration. Without a reproduction, we usually cannot diagnose the problem. | |
| ### Resources | |
| - [Creating a minimal reproduction](https://github.com/prettier/prettier-vscode/blob/main/docs/troubleshooting.md) | |
| - [Writing a good issue](https://github.com/prettier/pr |