You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+
## Our Standards
8
+
9
+
Examples of behavior that contributes to creating a positive environment include:
10
+
11
+
* Using welcoming and inclusive language
12
+
* Being respectful of differing viewpoints and experiences
13
+
* Gracefully accepting constructive criticism
14
+
* Focusing on what is best for the community
15
+
* Showing empathy towards other community members
16
+
17
+
Examples of unacceptable behavior by participants include:
18
+
19
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20
+
* Trolling, insulting/derogatory comments, and personal or political attacks
21
+
* Public or private harassment
22
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24
+
25
+
## Our Responsibilities
26
+
27
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28
+
29
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30
+
31
+
## Scope
32
+
33
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34
+
35
+
## Enforcement
36
+
37
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at . The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38
+
39
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40
+
41
+
## Attribution
42
+
43
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
> This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-angular/convention.md).
4
+
5
+
#### Examples
6
+
7
+
Appears under "Features" header, `compiler` subheader:
8
+
9
+
```
10
+
feat(compiler): add 'comments' option
11
+
```
12
+
13
+
Appears under "Bug Fixes" header, `sidebar` subheader, with a link to issue #28:
14
+
15
+
```
16
+
fix(sidebar): handle events on blur
17
+
18
+
close #28
19
+
```
20
+
21
+
Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation:
22
+
23
+
```
24
+
perf(core): improve vdom diffing by removing 'foo' option
25
+
26
+
BREAKING CHANGE: The 'foo' option has been removed.
27
+
```
28
+
29
+
The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header.
30
+
31
+
```
32
+
revert: feat(compiler): add 'comments' option
33
+
34
+
This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
35
+
```
36
+
37
+
### Full Message Format
38
+
39
+
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
40
+
41
+
```
42
+
<type>(<scope>): <subject>
43
+
<BLANK LINE>
44
+
<body>
45
+
<BLANK LINE>
46
+
<footer>
47
+
```
48
+
49
+
The **header** is mandatory and the **scope** of the header is optional.
50
+
51
+
### Revert
52
+
53
+
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
54
+
55
+
### Type
56
+
57
+
If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
58
+
59
+
Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.
60
+
61
+
### Scope
62
+
63
+
The scope could be anything specifying place of the commit change. For example `core`, `compiler`, `ssr`, `v-model`, `transition` etc...
64
+
65
+
### Subject
66
+
67
+
The subject contains succinct description of the change:
68
+
69
+
* use the imperative, present tense: "change" not "changed" nor "changes"
70
+
* don't capitalize first letter
71
+
* no dot (.) at the end
72
+
73
+
### Body
74
+
75
+
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
76
+
The body should include the motivation for the change and contrast this with previous behavior.
77
+
78
+
### Footer
79
+
80
+
The footer should contain any information about **Breaking Changes** and is also the place to
81
+
reference GitHub issues that this commit **Closes**.
82
+
83
+
**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+41-39Lines changed: 41 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,30 +1,25 @@
1
-
# Contributing to CoreUI Vue Admin Template
1
+
# Contributing to CoreUI
2
2
3
-
Looking to contribute something? **Here's how you can help.**
3
+
Looking to contribute something to CoreUI? **Here's how you can help.**
4
4
5
5
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
6
6
7
-
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
7
+
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing
8
+
patches and features.
8
9
9
10
## Using the issue tracker
10
11
11
-
The [issue tracker](https://github.com/coreui/coreui-free-vue-admin-template/issues) is the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
12
+
The [issue tracker](https://github.com/coreui/coreui-free-vue-admin-template/issues) is
13
+
the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests)
14
+
and [submitting pull requests](#pull-requests), but please respect the following
15
+
restrictions:
12
16
13
-
- Please **do not** use the issue tracker for personal support requests.
17
+
* Please **do not** use the issue tracker for personal support requests.
14
18
15
-
- Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
16
-
Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)
19
+
* Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
20
+
Use [GitHub's "vueions" feature](https://github.com/blog/2119-add-vueions-to-pull-requests-issues-and-comments)
17
21
instead.
18
22
19
-
- Please **do not** open issues or pull requests regarding the code in:
A bug is a _demonstrable problem_ that is caused by the code in the repository.
@@ -36,10 +31,11 @@ Guidelines for bug reports:
36
31
37
32
1.**Use the GitHub issue search**— check if the issue has already been reported.
38
33
39
-
2.**Check if the issue has been fixed**— try to reproduce it using the latest `master` or `dev` branch in the repository.
34
+
2.**Check if the issue has been fixed**— try to reproduce it using the latest `master` or development branch in the repository.
40
35
41
36
3.**Isolate the problem**— ideally create a [reduced test case](https://css-tricks.com/reduced-test-cases/) and a live example. [This JS Bin](http://jsbin.com/lefey/1/edit?html,output) is a helpful template.
42
37
38
+
43
39
A good bug report shouldn't leave others needing to chase you up for more
44
40
information. Please try to be as detailed as possible in your report. What is
45
41
your environment? What steps will reproduce the issue? What browser(s) and OS
@@ -67,10 +63,12 @@ Example:
67
63
68
64
## Feature requests
69
65
70
-
Feature requests are welcome. Before opening a feature request, please take a moment to find out whether your idea
71
-
fits with the scope and aims of the project. It's up to *you* to make a strong
72
-
case to convince the project's developers of the merits of this feature. Please
73
-
provide as much detail and context as possible.
66
+
Feature requests are welcome. Before opening a feature request, please take a
67
+
moment to find out whether your idea fits with the scope and aims of the
68
+
project. It's up to *you* to make a strong case to convince the project's
69
+
developers of the merits of this feature. Please provide as much detail
70
+
and context as possible.
71
+
74
72
75
73
## Pull requests
76
74
@@ -91,21 +89,21 @@ included in the project:
91
89
92
90
```bash
93
91
# Clone your fork of the repo into the current directory
2. If you cloned a while ago, get the latest changes from upstream:
102
100
103
101
```bash
104
-
git checkout dev
105
-
git pull upstream dev
102
+
git checkout master
103
+
git pull upstream master
106
104
```
107
105
108
-
3. Create a new topic branch (off the development branch "dev") to
106
+
3. Create a new topic branch (off the main project development branch) to
109
107
contain your feature, change, or fix:
110
108
111
109
```bash
@@ -121,7 +119,7 @@ included in the project:
121
119
5. Locally merge (or rebase) the upstream development branch into your topic branch:
122
120
123
121
```bash
124
-
git pull [--rebase] upstream dev
122
+
git pull [--rebase] upstream master
125
123
```
126
124
127
125
6. Push your topic branch up to your fork:
@@ -130,21 +128,25 @@ included in the project:
130
128
git push origin <topic-branch-name>
131
129
```
132
130
133
-
7.[Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description into the `dev` branch.
131
+
7.[Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
132
+
with a clear title and description against the `master` branch.
134
133
135
-
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to license your work under the terms of the [MIT License](LICENSE).
134
+
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to
135
+
license your work under the terms of the [MIT License](LICENSE).
136
136
137
137
### Semantic Git commit messages
138
138
139
-
Inspired by Sparkbox's awesome article on [semantic commit messages](http://seesparkbox.com/foundry/semantic_commit_messages). Please use following commit message format.
140
-
141
-
- chore (updating npm tasks etc; no production code change) -> ```git test -m 'chore: commit-message-here'```
about: Tell us about a bug you may have identified in CoreUI Free Vue Admin Template.
4
+
title: ''
5
+
labels: ''
6
+
assignees: ''
7
+
8
+
---
9
+
10
+
Before opening:
11
+
12
+
-[Search for duplicate or closed issues](https://github.com/coreui/coreui-free-vue-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
13
+
-[Validate](https://html5.validator.nu/) any HTML to avoid common problems
14
+
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-vue-admin-template/blob/v4-dev/.github/CONTRIBUTING.md)
15
+
16
+
Bug reports must include:
17
+
18
+
- Operating system and version (Windows, macOS, Android, iOS)
19
+
- Browser and version (Chrome, Firefox, Safari, Microsoft Edge, Opera, Android Browser)
20
+
- A [reduced test case](https://css-tricks.com/reduced-test-cases/) or suggested fix using [CodePen](https://codepen.io/) or [JS Bin](https://jsbin.com/)
0 commit comments