Skip to content

Commit 69c099c

Browse files
authored
Format markdown with prettier and prepare SVG graphs for hooks (#4206)
* Use prettier to format markdown * Add hooks graphs
1 parent 2f74020 commit 69c099c

25 files changed

+4170
-3217
lines changed

.github/ISSUE_TEMPLATE/SUPPORT.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
---
22
name: 🆘 Support, Help, and Advice
33
about: 👉🏽 Need help or tech support? Please don't open an issue! Head to https://is.gd/rollup_chat or https://stackoverflow.com/questions/tagged/rollupjs.
4-
54
---
65

7-
Hey there! If you need help or tech support then this is not the place to
8-
ask. Please head to the [Rollup Discord](https://is.gd/rollup_chat)
9-
instead or post a question to https://stackoverflow.com/questions/tagged/rollupjs.
6+
Hey there! If you need help or tech support then this is not the place to ask. Please head to the [Rollup Discord](https://is.gd/rollup_chat) instead or post a question to https://stackoverflow.com/questions/tagged/rollupjs.
107

11-
If you arrived here because you think Rollup's documentation is unclear,
12-
insufficient or wrong, please consider creating an issue for the documentation
13-
instead.
8+
If you arrived here because you think Rollup's documentation is unclear, insufficient or wrong, please consider creating an issue for the documentation instead.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,25 @@
1414
-->
1515

1616
This PR contains:
17+
1718
- [ ] bugfix
1819
- [ ] feature
1920
- [ ] refactor
2021
- [ ] documentation
2122
- [ ] other
2223

2324
Are tests included?
24-
- [ ] yes (*bugfixes and features will not be merged without tests*)
25+
26+
- [ ] yes (_bugfixes and features will not be merged without tests_)
2527
- [ ] no
2628

2729
Breaking Changes?
28-
- [ ] yes (*breaking changes will not be merged unless absolutely necessary*)
30+
31+
- [ ] yes (_breaking changes will not be merged unless absolutely necessary_)
2932
- [ ] no
3033

3134
List any relevant issue numbers:
35+
3236
<!--
3337
If this PR resolves any issues, list them as
3438

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
cli/help.md
2+
LICENSE.md

.prettierrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.prettierrc.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"arrowParens": "avoid",
3+
"printWidth": 100,
4+
"singleQuote": true,
5+
"trailingComma": "none",
6+
"useTabs": true,
7+
"overrides": [
8+
{
9+
"files": "*.md",
10+
"options": {
11+
"useTabs": false,
12+
"tabWidth": 2,
13+
"proseWrap": "never"
14+
}
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)