Skip to content

Commit

Permalink
github: add spoiler tags to issue template (#244)
Browse files Browse the repository at this point in the history
- long logs of output or long configs are hard on the eyes and make it
  difficult to read through issues as they just take up so much space
  - so it would be better, in my opinion, to hide them by default with
    spoiler tags, which can be opened up when further investigation is
    warranted

- some issue authors have already used this pattern, this just brings
  it to the template itself so everyone (hopefully) starts using it
  • Loading branch information
agilgur5 committed Oct 15, 2020
1 parent fadafef commit 4d2e7fd
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions .github/issue_template.md
Expand Up @@ -20,16 +20,40 @@

#### rollup.config.js

<!--- paste your rollup config here if relevant --->
<!--- paste your rollup config below if relevant --->
<details>
<summary>`rollup.config.js`: </summary>

<!--- INSERT rollup.config.js HERE --->

</details>

#### tsconfig.json

<!--- paste your tsconfig.json here if relevant --->
<!--- paste your tsconfig.json below if relevant --->
<details>
<summary>`tsconfig.json`: </summary>

<!--- INSERT tsconfig.json HERE --->

</details>

#### package.json

<!--- paste your package.json here if relevant --->
<!--- paste your package.json below if relevant --->
<details>
<summary>`package.json`: </summary>

<!--- INSERT package.json HERE --->

</details>

#### plugin output with verbosity 3

<!--- add verbosity verbosity: 3 to plugin options and attach output if relevant (censor out anything sensitive) --->
<details>
<summary>plugin output with verbosity 3: </summary>

<!--- INSERT plugin output HERE or attach --->

</details>

0 comments on commit 4d2e7fd

Please sign in to comment.