Skip to content

Commit 4d2e7fd

Browse files
authored
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
1 parent fadafef commit 4d2e7fd

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

.github/issue_template.md

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,40 @@
2020

2121
#### rollup.config.js
2222

23-
<!--- paste your rollup config here if relevant --->
23+
<!--- paste your rollup config below if relevant --->
24+
<details>
25+
<summary>`rollup.config.js`: </summary>
26+
27+
<!--- INSERT rollup.config.js HERE --->
28+
29+
</details>
2430

2531
#### tsconfig.json
2632

27-
<!--- paste your tsconfig.json here if relevant --->
33+
<!--- paste your tsconfig.json below if relevant --->
34+
<details>
35+
<summary>`tsconfig.json`: </summary>
36+
37+
<!--- INSERT tsconfig.json HERE --->
38+
39+
</details>
2840

2941
#### package.json
3042

31-
<!--- paste your package.json here if relevant --->
43+
<!--- paste your package.json below if relevant --->
44+
<details>
45+
<summary>`package.json`: </summary>
46+
47+
<!--- INSERT package.json HERE --->
48+
49+
</details>
3250

3351
#### plugin output with verbosity 3
3452

3553
<!--- add verbosity verbosity: 3 to plugin options and attach output if relevant (censor out anything sensitive) --->
54+
<details>
55+
<summary>plugin output with verbosity 3: </summary>
56+
57+
<!--- INSERT plugin output HERE or attach --->
58+
59+
</details>

0 commit comments

Comments
 (0)