Skip to content

Commit 55ba1bb

Browse files
committed
Update CONTRIBUTING.md
1 parent 7faaaf7 commit 55ba1bb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

CONTRIBUTING.md

+20
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,24 @@ you can make a pull-request to the `develop` branch.
2424
If you are fixing a bug in a `release` version, you need to branch of `release/<version>`.
2525
Once the bug is fixed, you can make a pull-request to the `release<version>` branch.
2626

27+
### Making a new feature
28+
29+
You have to create a new branch from `develop`
30+
31+
```
32+
$git checkout develop
33+
$git checkout -b feature/my-new-feature
34+
```
35+
36+
When your new feature is finished, edit the `CHANGELOG` file and add a line explaining your new feature.
37+
Then make a pull-request to de `develop` branch.
38+
39+
40+
## Syntax
41+
42+
Before making a pull request, ensure that syntax style is correct. You can check this by running the line:
43+
44+
```
45+
grunt checksyntax
46+
```
2747

0 commit comments

Comments
 (0)