Skip to content

Commit

Permalink
Format markdown with prettier and prepare SVG graphs for hooks (#4206)
Browse files Browse the repository at this point in the history
* Use prettier to format markdown

* Add hooks graphs
  • Loading branch information
lukastaegert committed Aug 14, 2021
1 parent 2f74020 commit 69c099c
Show file tree
Hide file tree
Showing 25 changed files with 4,170 additions and 3,217 deletions.
9 changes: 2 additions & 7 deletions .github/ISSUE_TEMPLATE/SUPPORT.md
@@ -1,13 +1,8 @@
---
name: 🆘 Support, Help, and Advice
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.

---

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

If you arrived here because you think Rollup's documentation is unclear,
insufficient or wrong, please consider creating an issue for the documentation
instead.
If you arrived here because you think Rollup's documentation is unclear, insufficient or wrong, please consider creating an issue for the documentation instead.
8 changes: 6 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Expand Up @@ -14,21 +14,25 @@
-->

This PR contains:

- [ ] bugfix
- [ ] feature
- [ ] refactor
- [ ] documentation
- [ ] other

Are tests included?
- [ ] yes (*bugfixes and features will not be merged without tests*)

- [ ] yes (_bugfixes and features will not be merged without tests_)
- [ ] no

Breaking Changes?
- [ ] yes (*breaking changes will not be merged unless absolutely necessary*)

- [ ] yes (_breaking changes will not be merged unless absolutely necessary_)
- [ ] no

List any relevant issue numbers:

<!--
If this PR resolves any issues, list them as
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
@@ -0,0 +1,2 @@
cli/help.md
LICENSE.md
7 changes: 0 additions & 7 deletions .prettierrc

This file was deleted.

17 changes: 17 additions & 0 deletions .prettierrc.json
@@ -0,0 +1,17 @@
{
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false,
"tabWidth": 2,
"proseWrap": "never"
}
}
]
}

0 comments on commit 69c099c

Please sign in to comment.