github: add spoiler tags to issue template (#244)

- 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
This commit is contained in:
Anton Gilgur 2020-10-15 11:14:45 -04:00 committed by GitHub
parent fadafeffb4
commit 4d2e7fd8d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>