Skip to content

Commit

Permalink
chore: fix issue template prose wrap (#3112)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmllr95 committed Apr 15, 2019
1 parent 8f6f6ee commit 29f1895
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 19 deletions.
7 changes: 2 additions & 5 deletions .github/ISSUE_TEMPLATE/BUG_REPORT_TEMPLATE.md
Expand Up @@ -35,12 +35,9 @@ A clear and concise description of what you expected to happen.

### Demo link

If applicable, add a minimal demo link to help explain your problem. Some options for that are
[CodePen](https://codepen.io/), [CodeSandbox](https://codesandbox.io/), [JS Bin](https://jsbin.com/)
or [JSFiddle](https://jsfiddle.net/).
If applicable, add a minimal demo link to help explain your problem. Some options for that are [CodePen](https://codepen.io/), [CodeSandbox](https://codesandbox.io/), [JS Bin](https://jsbin.com/) or [JSFiddle](https://jsfiddle.net/).

You can also export markup from the [Online Playground](https://bootstrap-vue.js.org/play) to
_CodePen_, _CodeSandbox_ or _JSFiddle_.
You can also export markup from the [Online Playground](https://bootstrap-vue.js.org/play) to _CodePen_, _CodeSandbox_ or _JSFiddle_.

### Additional context

Expand Down
20 changes: 6 additions & 14 deletions .github/PULL_REQUEST_TEMPLATE.md
Expand Up @@ -23,27 +23,19 @@ A clear and concise description of what the pull request does.
**The PR fulfills these requirements:**

- [ ] It's submitted to the `dev` branch, **not** the `master` branch
- [ ] When resolving a specific issue, it's referenced in the PR's title (i.e.
`[...] (fixes #xxx[,#xxx])`, where "xxx" is the issue number)
- [ ] It should address only one issue or feature. If adding multiple features or fixing a bug and
adding a new feature, break them into separate PRs if at all possible.
- [ ] The title should follow the [**Conventional Commits**](https://www.conventionalcommits.org/)
naming convention (i.e. `fix(alert): not alerting during SSR render`,
`docs(badge): update pill examples, fix typos`, `chore: fix typo in README`, etc). **This is
very important, as the `CHANGELOG` is generated from these messages.**
- [ ] When resolving a specific issue, it's referenced in the PR's title (i.e. `[...] (fixes #xxx[,#xxx])`, where "xxx" is the issue number)
- [ ] It should address only one issue or feature. If adding multiple features or fixing a bug and adding a new feature, break them into separate PRs if at all possible.
- [ ] The title should follow the [**Conventional Commits**](https://www.conventionalcommits.org/) naming convention (i.e. `fix(alert): not alerting during SSR render`, `docs(badge): update pill examples, fix typos`, `chore: fix typo in README`, etc). **This is very important, as the `CHANGELOG` is generated from these messages.**

**If new features/enhancement/fixes are added or changed:**

- [ ] Includes documentation updates (including updating the component's `package.json` for slot and
event changes)
- [ ] Includes documentation updates (including updating the component's `package.json` for slot and event changes)
- [ ] New/updated tests are included and passing (if required)
- [ ] Existing test suites are passing
- [ ] The changes have not impacted the functionality of other components or directives
- [ ] ARIA Accessibility has been taken into consideration (Does it affect screen reader users or
keyboard only users? Clickable items should be in the tab index, etc.)
- [ ] ARIA Accessibility has been taken into consideration (Does it affect screen reader users or keyboard only users? Clickable items should be in the tab index, etc.)

**If adding a new feature, or changing the functionality of an existing feature, the PR's
description above includes:**

- [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a
suggestion issue first and wait for approval before working on it)
- [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)
6 changes: 6 additions & 0 deletions .prettierrc
Expand Up @@ -5,6 +5,12 @@
"singleQuote": true,
"tabWidth": 2,
"overrides": [
{
"files": ".github/**/*.md",
"options": {
"proseWrap": "preserve"
}
},
{
"files": "*.scss",
"options": {
Expand Down

0 comments on commit 29f1895

Please sign in to comment.